From: Than McIntosh Date: Mon, 21 Nov 2022 16:46:23 +0000 (-0500) Subject: testing: skip TestVectoredHandlerExceptionInNonGoThread on windows-amd64-2012-* X-Git-Tag: go1.20rc1~131 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d6859465e5e9049dd38929881da6eedb9a16dee5;p=gostls13.git testing: skip TestVectoredHandlerExceptionInNonGoThread on windows-amd64-2012-* Modify skip rule for TestVectoredHandlerExceptionInNonGoThread to trigger on both the base builder (windows-amd64-2012) and the newcc canary builder (windows-amd64-2012-newcc). Updates #49681. Change-Id: I58109fc2e861b943cb66be0feec348671be84ab3 Reviewed-on: https://go-review.googlesource.com/c/go/+/452436 Run-TryBot: Than McIntosh Auto-Submit: Than McIntosh TryBot-Result: Gopher Robot Reviewed-by: Cherry Mui --- diff --git a/src/runtime/signal_windows_test.go b/src/runtime/signal_windows_test.go index b27eca9b60..c9b8e90118 100644 --- a/src/runtime/signal_windows_test.go +++ b/src/runtime/signal_windows_test.go @@ -21,7 +21,7 @@ func TestVectoredHandlerExceptionInNonGoThread(t *testing.T) { if *flagQuick { t.Skip("-quick") } - if testenv.Builder() == "windows-amd64-2012" { + if strings.HasPrefix(testenv.Builder(), "windows-amd64-2012") { testenv.SkipFlaky(t, 49681) } testenv.MustHaveGoBuild(t)