mirror of
https://github.com/golang/go.git
synced 2025-10-19 19:13:18 +00:00
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 <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>
This commit is contained in:
parent
8282b72d62
commit
1f7ffca171
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ func TestTickerResetLtZeroDuration(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestLongAdjustTimers(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.Skipf("skipping on %s - too slow", runtime.GOOS)
|
||||||
}
|
}
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue