From 31c07df3d1a7a62665a589cdda84410f2561c080 Mon Sep 17 00:00:00 2001 From: "Bryan C. Mills" Date: Thu, 29 Aug 2019 10:52:49 -0400 Subject: blog: skip test on slow aix-ppc64 builder Updates golang/go#33940 Change-Id: Ie6592612e77c91eaa8742046b8b54199ed934909 Reviewed-on: https://go-review.googlesource.com/c/blog/+/192323 Run-TryBot: Bryan C. Mills TryBot-Result: Gobot Gobot Reviewed-by: Dmitri Shuralyov --- local_test.go | 5 +++++ 1 file changed, 5 insertions(+) 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 }() -- cgit v1.2.3