We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d52da6d commit e9a4ed9Copy full SHA for e9a4ed9
internal/testenv/testenv.go
@@ -262,6 +262,12 @@ func ExitIfSmallMachine() {
262
// As of 2021-11-02, this builder is running with GO_TEST_TIMEOUT_SCALE=2,
263
// and seems to have unusually slow disk performance.
264
fmt.Fprintln(os.Stderr, "skipping test: dragonfly-amd64 has slow disk (https://golang.org/issue/45216)")
265
+ case "linux-riscv64-unmatched":
266
+ // As of 2021-11-03, this builder is empirically not fast enough to run
267
+ // gopls tests. Ideally we should make the tests faster in short mode
268
+ // and/or fix them to not assume arbitrary deadlines.
269
+ // For now, we'll skip them instead.
270
+ fmt.Fprintf(os.Stderr, "skipping test: %s builder is too slow (https://golang.org/issue/49321)\n", b)
271
default:
272
return
273
}
0 commit comments