Skip to content

Commit

Permalink
internal/trace/v2: disable TestTrace* tests on Windows for now
Browse files Browse the repository at this point in the history
There are a couple known issues here. Disable the tests for now so it's
not blocking anyone.

For #64061.

Change-Id: Iaaa9007b93ea78739cb7d2b59b2a1715de29d72b
Reviewed-on: https://go-review.googlesource.com/c/go/+/541197
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
  • Loading branch information
mknyszek authored and gopherbot committed Nov 10, 2023
1 parent abf8422 commit 505dff4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/internal/trace/v2/trace_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -524,6 +524,10 @@ func TestTraceManyStartStop(t *testing.T) {
func testTraceProg(t *testing.T, progName string, extra func(t *testing.T, trace, stderr []byte, stress bool)) {
testenv.MustHaveGoRun(t)

if runtime.GOOS == "windows" {
t.Skip("temporarily disabled on Windows for #64061")
}

// Check if we're on a builder.
onBuilder := testenv.Builder() != ""

Expand Down

0 comments on commit 505dff4

Please sign in to comment.