Skip to content

Commit d1c84af

Browse files
author
Bryan C. Mills
committed
message/pipeline: skip TestFullCycle on plan9-arm
This test has timed out several times recently on this builder. The test is pretty slow even on Linux, and may be especially filesystem-intensive. For golang/go#49338 Change-Id: Ife2bb399b10f369f815055bb0ad44bb007f606b7 Reviewed-on: https://go-review.googlesource.com/c/text/+/380414 Trust: Bryan Mills <bcmills@google.com> Run-TryBot: Bryan Mills <bcmills@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
1 parent 18b340f commit d1c84af

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

message/pipeline/pipeline_test.go

+3
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ func TestFullCycle(t *testing.T) {
3333
if runtime.GOOS == "android" {
3434
t.Skip("cannot load outside packages on android")
3535
}
36+
if b := os.Getenv("GO_BUILDER_NAME"); b == "plan9-arm" {
37+
t.Skipf("skipping: test frequently times out on %s", b)
38+
}
3639
if _, err := exec.LookPath("go"); err != nil {
3740
t.Skipf("skipping because 'go' command is unavailable: %v", err)
3841
}

0 commit comments

Comments
 (0)