From: Russ Cox Date: Sat, 9 Mar 2024 00:05:02 +0000 (-0500) Subject: time: disable TestLongAdjustTimers on android/ios X-Git-Tag: go1.23rc1~933 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=aa511b426d1c72c182cc1b797d3fa71cf47906f3;p=gostls13.git time: disable TestLongAdjustTimers on android/ios The simulators are too slow. Change-Id: I0aaf2304ad0881c74886ff3185c09614de2aae63 Reviewed-on: https://go-review.googlesource.com/c/go/+/570236 Reviewed-by: Ian Lance Taylor LUCI-TryBot-Result: Go LUCI Auto-Submit: Russ Cox --- diff --git a/src/time/tick_test.go b/src/time/tick_test.go index 9f1d366980..a2c6b24861 100644 --- a/src/time/tick_test.go +++ b/src/time/tick_test.go @@ -147,6 +147,9 @@ func TestTickerResetLtZeroDuration(t *testing.T) { } func TestLongAdjustTimers(t *testing.T) { + if runtime.GOOS == "android" || runtime.GOOS == "ios" { + t.Skipf("skipping on %s - too slow", runtime.GOOS) + } t.Parallel() var wg sync.WaitGroup defer wg.Wait()