Skip to content

Commit d52da6d

Browse files
author
Bryan C. Mills
committed
internal/testenv: treat dragonfly-amd64 as a slow machine
Updates golang/go#45216 Change-Id: I9e714582c4d8c3c7ce7571359d7f9bbe2c6c9497 Reviewed-on: https://go-review.googlesource.com/c/tools/+/360735 Trust: Bryan C. Mills <[email protected]> Run-TryBot: Bryan C. Mills <[email protected]> Reviewed-by: Robert Findley <[email protected]> gopls-CI: kokoro <[email protected]> TryBot-Result: Go Bot <[email protected]>
1 parent 7e03ece commit d52da6d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

internal/testenv/testenv.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,10 @@ func ExitIfSmallMachine() {
258258
// and there is only one of each. We shouldn't waste those scarce resources
259259
// running very slow tests.
260260
fmt.Fprintf(os.Stderr, "skipping test: %s builder is very slow\n", b)
261+
case "dragonfly-amd64":
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)")
261265
default:
262266
return
263267
}

0 commit comments

Comments
 (0)