diff options
| author | Michael Anthony Knyszek <mknyszek@google.com> | 2023-11-10 17:25:58 +0000 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2023-11-10 18:45:12 +0000 |
| commit | 505dff4fe260cc0b92482cfcf6d4dce233d2b10d (patch) | |
| tree | 2aa1c51f158e31a4a6ac4e730d521f91fb8ba518 /src/internal/trace | |
| parent | abf84221fc35a03848cda60373adf484eafb3e1b (diff) | |
| download | go-505dff4fe260cc0b92482cfcf6d4dce233d2b10d.tar.xz | |
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 <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
Diffstat (limited to 'src/internal/trace')
| -rw-r--r-- | src/internal/trace/v2/trace_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
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() != "" |
