Skip to content

Commit 4f6f68e

Browse files
committed
testing: skip flaky TestRaiseException on windows-amd64-2012
This is in relation to #49681 Change-Id: I32ad8b506cf8fb0a94b15c3cc8b1eaf5af728c59 Reviewed-on: https://go-review.googlesource.com/c/go/+/378254 Run-TryBot: Patrik Nyblom <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Bryan Mills <[email protected]> Trust: Patrik Nyblom <[email protected]>
1 parent 899d19a commit 4f6f68e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/runtime/syscall_windows_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -628,6 +628,9 @@ func TestOutputDebugString(t *testing.T) {
628628
}
629629

630630
func TestRaiseException(t *testing.T) {
631+
if testenv.Builder() == "windows-amd64-2012" {
632+
testenv.SkipFlaky(t, 49681)
633+
}
631634
o := runTestProg(t, "testprog", "RaiseException")
632635
if strings.Contains(o, "RaiseException should not return") {
633636
t.Fatalf("RaiseException did not crash program: %v", o)

0 commit comments

Comments
 (0)