mirror of
https://github.com/golang/go
synced 2024-11-17 22:54:48 -07:00
runtime: skip TestVectoredHandlerExceptionInNonGoThread
windows-amd-2012 builder seems to have some problems handling exception thrown in external C code which is affecting TestVectoredHandlerExceptionInNonGoThread. The issue is known and discussed in #49681. This Cl skips the offending test on windows-amd-2012. Change-Id: I7ca4353c9e531f0d75ac6a8dbd809acfa1f15bf9 Reviewed-on: https://go-review.googlesource.com/c/go/+/444616 Reviewed-by: Bryan Mills <bcmills@google.com> Reviewed-by: Michael Pratt <mpratt@google.com> Auto-Submit: Michael Pratt <mpratt@google.com> Run-TryBot: Quim Muntal <quimmuntal@gmail.com> TryBot-Result: Gopher Robot <gobot@golang.org>
This commit is contained in:
parent
6f7e9e2307
commit
acfdaf06f5
@ -21,6 +21,9 @@ func TestVectoredHandlerExceptionInNonGoThread(t *testing.T) {
|
|||||||
if *flagQuick {
|
if *flagQuick {
|
||||||
t.Skip("-quick")
|
t.Skip("-quick")
|
||||||
}
|
}
|
||||||
|
if testenv.Builder() == "windows-amd64-2012" {
|
||||||
|
testenv.SkipFlaky(t, 49681)
|
||||||
|
}
|
||||||
testenv.MustHaveGoBuild(t)
|
testenv.MustHaveGoBuild(t)
|
||||||
testenv.MustHaveCGO(t)
|
testenv.MustHaveCGO(t)
|
||||||
testenv.MustHaveExecPath(t, "gcc")
|
testenv.MustHaveExecPath(t, "gcc")
|
||||||
|
Loading…
Reference in New Issue
Block a user