]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/objdump: skip extld test on plan9
authorRuss Cox <rsc@golang.org>
Wed, 29 Oct 2014 04:03:17 +0000 (00:03 -0400)
committerRuss Cox <rsc@golang.org>
Wed, 29 Oct 2014 04:03:17 +0000 (00:03 -0400)
TBR=iant
CC=golang-codereviews
https://golang.org/cl/164180043

src/cmd/objdump/objdump_test.go

index a9eeea1e0665e300a95bfd81d96a62e4d8ac42cb..0a2d2565a74db58758fd1755a5ab23b630fc2882 100644 (file)
@@ -204,7 +204,7 @@ func TestDisasm(t *testing.T) {
 
 func TestDisasmExtld(t *testing.T) {
        switch runtime.GOOS {
-       case "windows":
+       case "plan9", "windows":
                t.Skipf("skipping on %s", runtime.GOOS)
        }
        testDisasm(t, "-ldflags=-linkmode=external")