From: Richard Miller Date: Thu, 7 Aug 2025 10:58:20 +0000 (+0100) Subject: time: skip TestLongAdjustTimers on plan9 (too slow) X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1f7ffca171cd8c50fe6a10eb77a84a95c5b37c61;p=gostls13.git 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 LUCI-TryBot-Result: Go LUCI Reviewed-by: Dmitri Shuralyov Auto-Submit: Dmitri Shuralyov Reviewed-by: Mark Freeman --- diff --git a/src/time/tick_test.go b/src/time/tick_test.go index 416bef59ee..d89d2dbdea 100644 --- a/src/time/tick_test.go +++ b/src/time/tick_test.go @@ -151,7 +151,7 @@ func TestTickerResetLtZeroDuration(t *testing.T) { } func TestLongAdjustTimers(t *testing.T) { - if runtime.GOOS == "android" || runtime.GOOS == "ios" { + if runtime.GOOS == "android" || runtime.GOOS == "ios" || runtime.GOOS == "plan9" { t.Skipf("skipping on %s - too slow", runtime.GOOS) } t.Parallel()