We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c64bb76 commit 87974e3Copy full SHA for 87974e3
gopls/internal/lsp/filecache/filecache_test.go
@@ -60,6 +60,9 @@ func TestBasics(t *testing.T) {
60
61
// TestConcurrency exercises concurrent access to the same entry.
62
func TestConcurrency(t *testing.T) {
63
+ if os.Getenv("GO_BUILDER_NAME") == "plan9-arm" {
64
+ t.Skip(`skipping on plan9-arm builder due to golang/go#58748: failing with 'mount rpc error'`)
65
+ }
66
const kind = "TestConcurrency"
67
key := uniqueKey()
68
const N = 100 // concurrency level
0 commit comments