Commit 8b1bd75e authored by David Crawshaw's avatar David Crawshaw

go/build: disable deps test on darwin/arm

Change-Id: Ief78a10c4aaa43f300f34519911ff73b6f510d73
Reviewed-on: https://go-review.googlesource.com/6100Reviewed-by: 's avatarHyang-Ah Hana Kim <hyangah@gmail.com>
parent f47e581e
......@@ -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
......
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