From: Than McIntosh Date: Mon, 21 Nov 2022 16:01:53 +0000 (-0500) Subject: testing: skip flaky TestRaiseException on windows-amd64-2012-* X-Git-Tag: go1.20rc1~133 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=f0331c524e0d8d32c3918d3515ab8413f38dbd56;p=gostls13.git testing: skip flaky TestRaiseException on windows-amd64-2012-* Modify skip rule for TestRaiseException to trigger on both the base builder (windows-amd64-2012) and the newcc canary builder (windows-amd64-2012-newcc). Updates #49681. Change-Id: I132f9ddd102666b68ad04cc661fdcc2cd841051a Reviewed-on: https://go-review.googlesource.com/c/go/+/451294 Auto-Submit: Than McIntosh TryBot-Result: Gopher Robot Run-TryBot: Than McIntosh Reviewed-by: Bryan Mills --- diff --git a/src/runtime/syscall_windows_test.go b/src/runtime/syscall_windows_test.go index c0d3379e65..f38316a809 100644 --- a/src/runtime/syscall_windows_test.go +++ b/src/runtime/syscall_windows_test.go @@ -628,7 +628,7 @@ func TestOutputDebugString(t *testing.T) { } func TestRaiseException(t *testing.T) { - if testenv.Builder() == "windows-amd64-2012" { + if strings.HasPrefix(testenv.Builder(), "windows-amd64-2012") { testenv.SkipFlaky(t, 49681) } o := runTestProg(t, "testprog", "RaiseException")