Skip to content

Commit

Permalink
message/pipeline: skip TestFullCycle on plan9-arm
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Bryan C. Mills committed Jan 24, 2022
1 parent 18b340f commit d1c84af
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions message/pipeline/pipeline_test.go
Expand Up @@ -33,6 +33,9 @@ func TestFullCycle(t *testing.T) {
if runtime.GOOS == "android" {
t.Skip("cannot load outside packages on android")
}
if b := os.Getenv("GO_BUILDER_NAME"); b == "plan9-arm" {
t.Skipf("skipping: test frequently times out on %s", b)
}
if _, err := exec.LookPath("go"); err != nil {
t.Skipf("skipping because 'go' command is unavailable: %v", err)
}
Expand Down

0 comments on commit d1c84af

Please sign in to comment.