Commit b015cf70 authored by David Crawshaw's avatar David Crawshaw

cmd/nm: exclude Go tool test on darwin/arm

Change-Id: I44f1240a766f20de5997faca4f13f96af6da3534
Reviewed-on: https://go-review.googlesource.com/6190Reviewed-by: default avatarHyang-Ah Hana Kim <hyangah@gmail.com>
parent d0bcdd3f
......@@ -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")
......
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