Skip to content

Commit 87974e3

Browse files
committed
gopls/internal/lsp/filecache: skip TestConcurrency on plan9 builder
Skip due to golang/go#58748. We do not have resources to investigate this failure. Updates golang/go#59981 Fixes golang/go#58748 Change-Id: I5d695fbeab0b29cedf481ca6b2311bd8c399c4a5 Reviewed-on: https://go-review.googlesource.com/c/tools/+/492495 Reviewed-by: Alan Donovan <[email protected]> Run-TryBot: Robert Findley <[email protected]> TryBot-Result: Gopher Robot <[email protected]>
1 parent c64bb76 commit 87974e3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

gopls/internal/lsp/filecache/filecache_test.go

+3
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ func TestBasics(t *testing.T) {
6060

6161
// TestConcurrency exercises concurrent access to the same entry.
6262
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+
}
6366
const kind = "TestConcurrency"
6467
key := uniqueKey()
6568
const N = 100 // concurrency level

0 commit comments

Comments
 (0)