aboutsummaryrefslogtreecommitdiffstats
path: root/community/go/disable-flaky-sync-test.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/go/disable-flaky-sync-test.patch')
-rw-r--r--community/go/disable-flaky-sync-test.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/community/go/disable-flaky-sync-test.patch b/community/go/disable-flaky-sync-test.patch
deleted file mode 100644
index 76fa1377bb9..00000000000
--- a/community/go/disable-flaky-sync-test.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-See https://github.com/golang/go/issues/20072
-
-diff --git a/src/sync/waitgroup_test.go b/src/sync/waitgroup_test.go
-index 4ab438c..5f4fc80 100644
---- a/src/sync/waitgroup_test.go
-+++ b/src/sync/waitgroup_test.go
-@@ -10,6 +10,7 @@ import (
- . "sync"
- "sync/atomic"
- "testing"
-+ "internal/testenv"
- )
-
- func testWaitGroup(t *testing.T, wg1 *WaitGroup, wg2 *WaitGroup) {
-@@ -84,6 +85,7 @@ func pollUntilEqual(v *uint32, target uint32) {
- }
-
- func TestWaitGroupMisuse2(t *testing.T) {
-+ testenv.SkipFlaky(t, 20072)
- knownRacy(t)
- if runtime.NumCPU() <= 4 {
- t.Skip("NumCPU<=4, skipping: this test requires parallelism")