From 2ca29d0bee1c4c04cea804be224f49f832c92910 Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Wed, 15 Jun 2022 08:27:43 +1000 Subject: [PATCH] go: remove outdated patch --- .../go/go-1.9-skip-flaky-20072.patch | 20 ------------------- 1 file changed, 20 deletions(-) delete mode 100644 pkgs/development/compilers/go/go-1.9-skip-flaky-20072.patch diff --git a/pkgs/development/compilers/go/go-1.9-skip-flaky-20072.patch b/pkgs/development/compilers/go/go-1.9-skip-flaky-20072.patch deleted file mode 100644 index 13db40ababc3..000000000000 --- a/pkgs/development/compilers/go/go-1.9-skip-flaky-20072.patch +++ /dev/null @@ -1,20 +0,0 @@ -diff --git a/src/sync/waitgroup_test.go b/src/sync/waitgroup_test.go -index e3e3096..f80d1e2 100644 ---- a/src/sync/waitgroup_test.go -+++ b/src/sync/waitgroup_test.go -@@ -6,6 +6,7 @@ package sync_test - - import ( - "internal/race" -+ "internal/testenv" - "runtime" - . "sync" - "sync/atomic" -@@ -73,6 +74,7 @@ func TestWaitGroupMisuse2(t *testing.T) { - if runtime.NumCPU() <= 4 { - t.Skip("NumCPU<=4, skipping: this test requires parallelism") - } -+ testenv.SkipFlaky(t, 20072) - defer func() { - err := recover() - if err != "sync: negative WaitGroup counter" &&