Skip to content

Commit 31c07df

Browse files
author
Bryan C. Mills
committed
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 <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]>
1 parent f07bce1 commit 31c07df

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

local_test.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ package main
88

99
import (
1010
"net/http/httptest"
11+
"os"
1112
"runtime"
1213
"strings"
1314
"testing"
@@ -19,6 +20,10 @@ func TestServer(t *testing.T) {
1920
if runtime.GOOS == "android" {
2021
t.Skip("skipping on android; can't run go tool")
2122
}
23+
if os.Getenv("GO_BUILDER_NAME") == "aix-ppc64" {
24+
t.Skip("skipping on aix-ppc64 builder: https://golang.org/issue/33940")
25+
}
26+
2227
oldStatic := *staticPath
2328
*staticPath = "/static"
2429
defer func() { *staticPath = oldStatic }()

0 commit comments

Comments
 (0)