aboutsummaryrefslogtreecommitdiff
path: root/libgo/misc/cgo/test/testx.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/misc/cgo/test/testx.go')
-rw-r--r--libgo/misc/cgo/test/testx.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/misc/cgo/test/testx.go b/libgo/misc/cgo/test/testx.go
index 7fbc5c6..2b2e69e 100644
--- a/libgo/misc/cgo/test/testx.go
+++ b/libgo/misc/cgo/test/testx.go
@@ -164,7 +164,7 @@ func Add(x int) {
}
func testCthread(t *testing.T) {
- if runtime.GOOS == "darwin" && runtime.GOARCH == "arm64" {
+ if (runtime.GOOS == "darwin" || runtime.GOOS == "ios") && runtime.GOARCH == "arm64" {
t.Skip("the iOS exec wrapper is unable to properly handle the panic from Add")
}
sum.i = 0