Commit e6248c9c authored by David Crawshaw's avatar David Crawshaw

cmd/pack: skip fork test on darwin/arm

Change-Id: I65b50d2501fe822bc9044a851ac0b3467feadd9f
Reviewed-on: https://go-review.googlesource.com/6330Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
parent 184eb0ac
...@@ -202,6 +202,10 @@ func TestHello(t *testing.T) { ...@@ -202,6 +202,10 @@ func TestHello(t *testing.T) {
switch runtime.GOOS { switch runtime.GOOS {
case "android", "nacl": case "android", "nacl":
t.Skipf("skipping on %s", runtime.GOOS) t.Skipf("skipping on %s", runtime.GOOS)
case "darwin":
if runtime.GOARCH == "arm" {
t.Skipf("skipping on %s/%s", runtime.GOOS, runtime.GOARCH)
}
} }
dir := tmpDir(t) dir := tmpDir(t)
...@@ -239,6 +243,10 @@ func TestLargeDefs(t *testing.T) { ...@@ -239,6 +243,10 @@ func TestLargeDefs(t *testing.T) {
switch runtime.GOOS { switch runtime.GOOS {
case "android", "nacl": case "android", "nacl":
t.Skipf("skipping on %s", runtime.GOOS) t.Skipf("skipping on %s", runtime.GOOS)
case "darwin":
if runtime.GOARCH == "arm" {
t.Skipf("skipping on %s/%s", runtime.GOOS, runtime.GOARCH)
}
} }
dir := tmpDir(t) dir := tmpDir(t)
......
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