aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/pack
diff options
context:
space:
mode:
authorDavid Crawshaw <crawshaw@golang.org>2015-02-27 20:13:51 -0500
committerDavid Crawshaw <crawshaw@golang.org>2015-03-01 01:27:06 +0000
commite6248c9c99cf8bd0d195a972305c0235d92101a8 (patch)
tree601a7b7a52bcfa49bc6c489a5a63a8816b386819 /src/cmd/pack
parent184eb0ac9e521715037094860089d756f214668f (diff)
downloadgo-e6248c9c99cf8bd0d195a972305c0235d92101a8.tar.gz
go-e6248c9c99cf8bd0d195a972305c0235d92101a8.zip
cmd/pack: skip fork test on darwin/arm
Change-Id: I65b50d2501fe822bc9044a851ac0b3467feadd9f Reviewed-on: https://go-review.googlesource.com/6330 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/cmd/pack')
-rw-r--r--src/cmd/pack/pack_test.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/cmd/pack/pack_test.go b/src/cmd/pack/pack_test.go
index 0c58d628b4..c472c57673 100644
--- a/src/cmd/pack/pack_test.go
+++ b/src/cmd/pack/pack_test.go
@@ -202,6 +202,10 @@ func TestHello(t *testing.T) {
switch runtime.GOOS {
case "android", "nacl":
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)
@@ -239,6 +243,10 @@ func TestLargeDefs(t *testing.T) {
switch runtime.GOOS {
case "android", "nacl":
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)