Skip to content

Commit

Permalink
cmd/fiximports: skip TestFixImports on plan9-arm
Browse files Browse the repository at this point in the history
For golang/go#50775.

Change-Id: Ia7d99e9e7b007af3fa35332f0385949867e975eb
Reviewed-on: https://go-review.googlesource.com/c/tools/+/398817
Trust: Bryan Mills <bcmills@google.com>
Run-TryBot: Bryan Mills <bcmills@google.com>
gopls-CI: kokoro <noreply+kokoro@google.com>
Reviewed-by: Suzy Mueller <suzmue@golang.org>
  • Loading branch information
Bryan C. Mills committed Apr 7, 2022
1 parent 7f10777 commit 48e6d8d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cmd/fiximports/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ func init() {
}

func TestFixImports(t *testing.T) {
if os.Getenv("GO_BUILDER_NAME") == "plan9-arm" {
t.Skipf("skipping test that times out on plan9-arm; see https://go.dev/issue/50775")
}
testenv.NeedsTool(t, "go")

defer func() {
Expand Down

0 comments on commit 48e6d8d

Please sign in to comment.