mirror of
https://github.com/golang/go
synced 2024-11-23 17:30:02 -07:00
go/build: disable deps test on darwin/arm
Change-Id: Ief78a10c4aaa43f300f34519911ff73b6f510d73 Reviewed-on: https://go-review.googlesource.com/6100 Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
This commit is contained in:
parent
f47e581e02
commit
8b1bd75e66
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user