mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
runtime: disable TestSetPanicOnFault for dragonfly/386
This test currently deadlocks on dragonfly/386. Update #7421 LGTM=minux.ma R=golang-codereviews, minux.ma CC=golang-codereviews https://golang.org/cl/69380043
This commit is contained in:
parent
f50a87058b
commit
0b0e209ffb
1 changed files with 6 additions and 0 deletions
|
|
@ -135,6 +135,12 @@ func TestStopCPUProfilingWithProfilerOff(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestSetPanicOnFault(t *testing.T) {
|
||||
// This currently results in a fault in the signal trampoline on
|
||||
// dragonfly/386 - see issue 7421.
|
||||
if GOOS == "dragonfly" && GOARCH == "386" {
|
||||
t.Skip("skipping test on dragonfly/386")
|
||||
}
|
||||
|
||||
old := debug.SetPanicOnFault(true)
|
||||
defer debug.SetPanicOnFault(old)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue