Commit 439318dd authored by David Crawshaw's avatar David Crawshaw

crypto/x509: skip arm64 tests limited by iOS

Just like darwin/arm.

Change-Id: Ib0438021bfe9eb105222b93e5bb375c282cc7b8c
Reviewed-on: https://go-review.googlesource.com/8822Reviewed-by: default avatarMinux Ma <minux@golang.org>
parent b214a88d
...@@ -10,8 +10,9 @@ import ( ...@@ -10,8 +10,9 @@ import (
) )
func TestSystemRoots(t *testing.T) { func TestSystemRoots(t *testing.T) {
if runtime.GOARCH == "arm" { switch runtime.GOARCH {
t.Skipf("skipping on %s/%s", runtime.GOOS, runtime.GOARCH) case "arm", "arm64":
t.Skipf("skipping on %s/%s, no system root", runtime.GOOS, runtime.GOARCH)
} }
sysRoots := systemRootsPool() // actual system roots sysRoots := systemRootsPool() // actual system roots
......
...@@ -830,8 +830,9 @@ func TestImports(t *testing.T) { ...@@ -830,8 +830,9 @@ func TestImports(t *testing.T) {
case "android", "nacl": case "android", "nacl":
t.Skipf("skipping on %s", runtime.GOOS) t.Skipf("skipping on %s", runtime.GOOS)
case "darwin": case "darwin":
if runtime.GOARCH == "arm" { switch runtime.GOARCH {
t.Skipf("skipping on %s/%s", runtime.GOOS, runtime.GOARCH) case "arm", "arm64":
t.Skipf("skipping on %s/%s, cannot fork", runtime.GOOS, runtime.GOARCH)
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment