]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/nm: exclude Go tool test on darwin/arm
authorDavid Crawshaw <crawshaw@golang.org>
Thu, 26 Feb 2015 22:49:59 +0000 (17:49 -0500)
committerDavid Crawshaw <crawshaw@golang.org>
Thu, 26 Feb 2015 23:07:27 +0000 (23:07 +0000)
Change-Id: I44f1240a766f20de5997faca4f13f96af6da3534
Reviewed-on: https://go-review.googlesource.com/6190
Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
src/cmd/nm/nm_test.go

index cb555d8273a282b7f41267e99313535b3a447157..308192158487e6c2a1f9de485061293c77e8e29f 100644 (file)
@@ -58,6 +58,10 @@ func TestNM(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)
+               }
        }
 
        tmpDir, err := ioutil.TempDir("", "TestNM")