diff options
-rw-r--r-- | local_test.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/local_test.go b/local_test.go index 3df3bbe..b241dde 100644 --- a/local_test.go +++ b/local_test.go @@ -8,6 +8,7 @@ package main import ( "net/http/httptest" + "os" "runtime" "strings" "testing" @@ -19,6 +20,10 @@ func TestServer(t *testing.T) { if runtime.GOOS == "android" { t.Skip("skipping on android; can't run go tool") } + if os.Getenv("GO_BUILDER_NAME") == "aix-ppc64" { + t.Skip("skipping on aix-ppc64 builder: https://golang.org/issue/33940") + } + oldStatic := *staticPath *staticPath = "/static" defer func() { *staticPath = oldStatic }() |