aboutsummaryrefslogtreecommitdiffstats
path: root/community/go/disable-flaky-gc-test.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/go/disable-flaky-gc-test.patch')
-rw-r--r--community/go/disable-flaky-gc-test.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/community/go/disable-flaky-gc-test.patch b/community/go/disable-flaky-gc-test.patch
deleted file mode 100644
index 038fb27bfbe..00000000000
--- a/community/go/disable-flaky-gc-test.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-See https://github.com/golang/go/issues/37331
-
-diff -upr go.orig/src/runtime/gc_test.go go/src/runtime/gc_test.go
---- go.orig/src/runtime/gc_test.go 2020-06-01 00:59:57.179164980 +0200
-+++ go/src/runtime/gc_test.go 2020-06-01 01:00:52.282339799 +0200
-@@ -15,9 +15,11 @@ import (
- "testing"
- "time"
- "unsafe"
-+ "internal/testenv"
- )
-
- func TestGcSys(t *testing.T) {
-+ testenv.SkipFlaky(t, 37331)
- if os.Getenv("GOGC") == "off" {
- t.Skip("skipping test; GOGC=off in environment")
- }