aboutsummaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorAustin Clements <austin@google.com>2020-04-06 16:16:48 -0400
committerAustin Clements <austin@google.com>2020-04-08 18:37:38 +0000
commitd5e1b7ca68e2cc484d9a1517bdc0a9862936a1eb (patch)
tree4fdf0f2e0b21a99ee08bcf87ac833cd996b5162a /misc
parent8b4cbcc32098733832db0ba0cd8a8569315861c2 (diff)
downloadgo-d5e1b7ca68e2cc484d9a1517bdc0a9862936a1eb.tar.gz
go-d5e1b7ca68e2cc484d9a1517bdc0a9862936a1eb.zip
all: remove scattered remnants of darwin/386
This removes all conditions and conditional code (that I could find) that depended on darwin/386. Fixes #37610. Change-Id: I630d9ea13613fb7c0bcdb981e8367facff250ba0 Reviewed-on: https://go-review.googlesource.com/c/go/+/227582 Run-TryBot: Austin Clements <austin@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org> Reviewed-by: Cherry Zhang <cherryyz@google.com>
Diffstat (limited to 'misc')
-rw-r--r--misc/cgo/test/sigaltstack.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/misc/cgo/test/sigaltstack.go b/misc/cgo/test/sigaltstack.go
index f501f9ba3a..8dfa1cb5ad 100644
--- a/misc/cgo/test/sigaltstack.go
+++ b/misc/cgo/test/sigaltstack.go
@@ -64,8 +64,6 @@ func testSigaltstack(t *testing.T) {
switch {
case runtime.GOOS == "solaris", runtime.GOOS == "illumos", runtime.GOOS == "darwin" && runtime.GOARCH == "arm64":
t.Skipf("switching signal stack not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
- case runtime.GOOS == "darwin" && runtime.GOARCH == "386":
- t.Skipf("sigaltstack fails on darwin/386")
}
C.changeSignalStack()