aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/runtime_test.go
diff options
context:
space:
mode:
authorJoel Sing <jsing@google.com>2015-01-18 21:02:58 +1100
committerJoel Sing <jsing@google.com>2015-03-14 10:47:19 +0000
commit3b1d6920935a5db8bd0669c44838baf3e22343ed (patch)
tree0b32056acd4036db4dc4d85d9d4c45477b6ee9a8 /src/runtime/runtime_test.go
parentfacd79e4bea28f3ca0bc5dc51c9069fcb0bd9d0f (diff)
downloadgo-3b1d6920935a5db8bd0669c44838baf3e22343ed.tar.gz
go-3b1d6920935a5db8bd0669c44838baf3e22343ed.zip
all: remove dragonfly/386 port
DragonFlyBSD dropped support for i386 in 4.0 and there is no longer a dragonfly/386 - as such, remove the Go port. Fixes #8951 Fixes #7580 Fixes #7421 Change-Id: I69022ab2262132e8f97153f14dc8c37c98527008 Reviewed-on: https://go-review.googlesource.com/7543 Reviewed-by: Ian Lance Taylor <iant@golang.org> Reviewed-by: Dave Cheney <dave@cheney.net> Reviewed-by: Minux Ma <minux@golang.org> Run-TryBot: Joel Sing <jsing@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src/runtime/runtime_test.go')
-rw-r--r--src/runtime/runtime_test.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/runtime/runtime_test.go b/src/runtime/runtime_test.go
index 983442f1db..782b936548 100644
--- a/src/runtime/runtime_test.go
+++ b/src/runtime/runtime_test.go
@@ -177,12 +177,6 @@ var faultAddrs = []uint64{
}
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)