]> Cypherpunks.ru repositories - gostls13.git/blobdiff - src/internal/trace/v2/trace_test.go
internal/trace/v2: disable TestTrace* tests on Windows for now
[gostls13.git] / src / internal / trace / v2 / trace_test.go
index af0d639dc891bea723a0d234a18d5274ac7b4c9e..4984f211a41111d7d8b37317bd73058d4c92b574 100644 (file)
@@ -85,6 +85,8 @@ func TestTraceAnnotationsStress(t *testing.T) {
 }
 
 func TestTraceCgoCallback(t *testing.T) {
+       testenv.MustHaveCGO(t)
+
        switch runtime.GOOS {
        case "plan9", "windows":
                t.Skipf("cgo callback test requires pthreads and is not supported on %s", runtime.GOOS)
@@ -522,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() != ""