1
0
mirror of https://github.com/golang/go synced 2024-11-19 15:14:45 -07:00

runtime: skip flaky TestWindowsStackMemoryCgo

Updates #22575

Change-Id: I1f848768934b7024d2ef01db13b9003e9ca608a0
Reviewed-on: https://go-review.googlesource.com/76030
Reviewed-by: Russ Cox <rsc@golang.org>
This commit is contained in:
Alex Brainman 2017-11-04 12:06:23 +11:00 committed by Russ Cox
parent 8615cbffe2
commit af015b1f21

View File

@ -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"))
}