]> Cypherpunks repositories - gostls13.git/commitdiff
time: skip TestLongAdjustTimers on plan9 (too slow)
authorRichard Miller <millerresearch@gmail.com>
Thu, 7 Aug 2025 10:58:20 +0000 (11:58 +0100)
committerGopher Robot <gobot@golang.org>
Thu, 7 Aug 2025 18:07:04 +0000 (11:07 -0700)
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 <dmitshur@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Mark Freeman <markfreeman@google.com>
src/time/tick_test.go

index 416bef59ee91ee52c08a4389e54473c84082db04..d89d2dbdeadf2f713dba43a2640e14d5b917e63b 100644 (file)
@@ -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()