]> Cypherpunks repositories - gostls13.git/commitdiff
go/build: disable deps test on darwin/arm
authorDavid Crawshaw <crawshaw@golang.org>
Thu, 26 Feb 2015 14:21:19 +0000 (09:21 -0500)
committerDavid Crawshaw <crawshaw@golang.org>
Thu, 26 Feb 2015 14:54:55 +0000 (14:54 +0000)
Change-Id: Ief78a10c4aaa43f300f34519911ff73b6f510d73
Reviewed-on: https://go-review.googlesource.com/6100
Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
src/go/build/deps_test.go

index 7076f43163e46a1a65ee4b9cc7523cf3178071b2..8025833639a60d02ec9c32cc43fc8321c9ee3415 100644 (file)
@@ -376,10 +376,10 @@ var allowedErrors = map[osPkg]bool{
 }
 
 func TestDependencies(t *testing.T) {
-       if runtime.GOOS == "nacl" {
-               // NaCl tests run in a limited file system and we do not
+       if runtime.GOOS == "nacl" || (runtime.GOOS == "darwin" && runtime.GOARCH == "arm") {
+               // Tests run in a limited file system and we do not
                // provide access to every source file.
-               t.Skip("skipping on NaCl")
+               t.Skipf("skipping on %s/%s", runtime.GOOS, runtime.GOARCH)
        }
        var all []string