From: Michael Anthony Knyszek Date: Fri, 10 Nov 2023 17:25:58 +0000 (+0000) Subject: internal/trace/v2: disable TestTrace* tests on Windows for now X-Git-Tag: go1.22rc1~349 X-Git-Url: http://www.git.cypherpunks.ru/?a=commitdiff_plain;h=505dff4fe260cc0b92482cfcf6d4dce233d2b10d;hp=abf84221fc35a03848cda60373adf484eafb3e1b;p=gostls13.git internal/trace/v2: disable TestTrace* tests on Windows for now 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 Auto-Submit: Michael Knyszek Reviewed-by: Michael Pratt --- diff --git a/src/internal/trace/v2/trace_test.go b/src/internal/trace/v2/trace_test.go index 7823b01e93..4984f211a4 100644 --- a/src/internal/trace/v2/trace_test.go +++ b/src/internal/trace/v2/trace_test.go @@ -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() != ""