cmd/fiximports: skip TestDryRun on plan9-arm

For golang/go#50775.

Change-Id: I229263c840f406926b1f7c91de2400d4a18f3e16
Reviewed-on: https://go-review.googlesource.com/c/tools/+/380495
Trust: Bryan Mills <bcmills@google.com>
Reviewed-by: Daniel Martí <mvdan@mvdan.cc>
diff --git a/cmd/fiximports/main_test.go b/cmd/fiximports/main_test.go
index 9d2c94c..bbc4a2e 100644
--- a/cmd/fiximports/main_test.go
+++ b/cmd/fiximports/main_test.go
@@ -245,6 +245,9 @@
 
 // TestDryRun tests that the -n flag suppresses calls to writeFile.
 func TestDryRun(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")
 
 	*dryrun = true