Skip to content

Commit 1f7ffca

Browse files
millerresearchgopherbot
authored andcommitted
time: skip TestLongAdjustTimers on plan9 (too slow)
The TestLongAdjustTimers test has been consistently timing out after 60 seconds on plan9-arm. Skip the test for plan9, as it is already skipped for being too slow on android and ios. Fixes #74921 Change-Id: Icc32e902cecd2e98971a898373fe8346b179437d Reviewed-on: https://go-review.googlesource.com/c/go/+/693955 Reviewed-by: Dmitri Shuralyov <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> Auto-Submit: Dmitri Shuralyov <[email protected]> Reviewed-by: Mark Freeman <[email protected]>
1 parent 8282b72 commit 1f7ffca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/time/tick_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ func TestTickerResetLtZeroDuration(t *testing.T) {
151151
}
152152

153153
func TestLongAdjustTimers(t *testing.T) {
154-
if runtime.GOOS == "android" || runtime.GOOS == "ios" {
154+
if runtime.GOOS == "android" || runtime.GOOS == "ios" || runtime.GOOS == "plan9" {
155155
t.Skipf("skipping on %s - too slow", runtime.GOOS)
156156
}
157157
t.Parallel()

0 commit comments

Comments
 (0)