Skip to content

Commit

Permalink
tests/core/race: disable cover_race on windows (#2519)
Browse files Browse the repository at this point in the history
Test case was added in #2502. #2509 enabled tests and caused it to
start failing. Skipped for now.

Updates #2518
  • Loading branch information
Jay Conrod committed May 28, 2020
1 parent d41df07 commit 66505ef
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/core/race/race_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import (
"errors"
"fmt"
"os/exec"
"runtime"
"strings"
"testing"

Expand Down Expand Up @@ -248,6 +249,10 @@ func Test(t *testing.T) {
},
} {
t.Run(test.desc, func(t *testing.T) {
// TODO(#2518): fix coverage tests on Windows
if test.cmd == "coverage" && runtime.GOOS == "windows" {
t.Skip("TODO(#2518): fix and enable coverage tests on Windows")
}
args := []string{test.cmd}
if test.featureFlag {
args = append(args, "--features=race")
Expand Down

0 comments on commit 66505ef

Please sign in to comment.