From: Alex Brainman Date: Sat, 4 Nov 2017 01:06:23 +0000 (+1100) Subject: runtime: skip flaky TestWindowsStackMemoryCgo X-Git-Tag: go1.10beta1~404 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=af015b1f21949c6ef40989f4746431919c7df6e7;p=gostls13.git runtime: skip flaky TestWindowsStackMemoryCgo Updates #22575 Change-Id: I1f848768934b7024d2ef01db13b9003e9ca608a0 Reviewed-on: https://go-review.googlesource.com/76030 Reviewed-by: Russ Cox --- diff --git a/src/runtime/crash_cgo_test.go b/src/runtime/crash_cgo_test.go index 434dd58ac3..a4f4dd606d 100644 --- a/src/runtime/crash_cgo_test.go +++ b/src/runtime/crash_cgo_test.go @@ -468,5 +468,6 @@ func TestWindowsStackMemoryCgo(t *testing.T) { if runtime.GOOS != "windows" { t.Skip("skipping windows specific test") } + testenv.SkipFlaky(t, 22575) testWindowsStackMemory(t, runTestProg(t, "testprogcgo", "StackMemory")) }