Skip to content

Commit 3a0fcf7

Browse files
committed
dashboard: increase GO_TEST_TIMEOUT_SCALE for ppc64 builders
This sets the GO_TEST_TIMEOUT_SCALE=2 for ppc64 builders. The runtime tests have been timing out intermittently on ppc64le power8; it has happened on ppc64 and ppc64le power9 but very rarely. Updates golang/go#44422 Change-Id: I663f3f211a368a59e38fbff9ce43c925c6c7a209 Reviewed-on: https://go-review.googlesource.com/c/build/+/300870 Reviewed-by: Dmitri Shuralyov <[email protected]> Trust: Lynn Boger <[email protected]>
1 parent aeb22a9 commit 3a0fcf7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

dashboard/builders.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2354,18 +2354,21 @@ func init() {
23542354
HostType: "host-linux-ppc64-osu",
23552355
FlakyNet: true,
23562356
distTestAdjust: ppc64DistTestPolicy,
2357+
env: []string{"GO_TEST_TIMEOUT_SCALE=2"}, // see golang.org/issues/44422
23572358
})
23582359
addBuilder(BuildConfig{
23592360
Name: "linux-ppc64le-buildlet",
23602361
HostType: "host-linux-ppc64le-osu",
23612362
FlakyNet: true,
23622363
distTestAdjust: ppc64DistTestPolicy,
2364+
env: []string{"GO_TEST_TIMEOUT_SCALE=2"}, // see golang.org/issues/44422
23632365
})
23642366
addBuilder(BuildConfig{
23652367
Name: "linux-ppc64le-power9osu",
23662368
HostType: "host-linux-ppc64le-power9-osu",
23672369
FlakyNet: true,
23682370
distTestAdjust: ppc64DistTestPolicy,
2371+
env: []string{"GO_TEST_TIMEOUT_SCALE=2"}, // see golang.org/issues/44422
23692372
})
23702373
addBuilder(BuildConfig{
23712374
Name: "linux-arm64-packet",

0 commit comments

Comments
 (0)