We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be9c955 commit 90c04cdCopy full SHA for 90c04cd
src/time/sleep_test.go
@@ -7,6 +7,7 @@ package time_test
7
import (
8
"errors"
9
"fmt"
10
+ "internal/testenv"
11
"math/rand"
12
"runtime"
13
"strings"
@@ -531,6 +532,10 @@ func TestZeroTimer(t *testing.T) {
531
532
// Test that rapidly moving a timer earlier doesn't cause it to get dropped.
533
// Issue 47329.
534
func TestTimerModifiedEarlier(t *testing.T) {
535
+ if runtime.GOOS == "plan9" && runtime.GOARCH == "arm" {
536
+ testenv.SkipFlaky(t, 50470)
537
+ }
538
+
539
past := Until(Unix(0, 0))
540
count := 1000
541
fail := 0
0 commit comments