mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd/objdump: skip fork test on darwin/arm
Change-Id: I1d1eb71014381452d1ef368431cb2556245a35ab Reviewed-on: https://go-review.googlesource.com/6250 Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
This commit is contained in:
parent
c62b003eba
commit
5028f8c98d
1 changed files with 4 additions and 0 deletions
|
|
@ -18,6 +18,10 @@ func buildObjdump(t *testing.T) (tmp, exe string) {
|
|||
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)
|
||||
}
|
||||
}
|
||||
|
||||
tmp, err := ioutil.TempDir("", "TestObjDump")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue