Skip to content

Commit 9770e07

Browse files
committed
ext/File-Glob/t/rt131211.t: fix timing issues #2
Commit v5.27.8-405-gf548aeca98 from a year ago tweaked this timing-sensitive test script to reduce false positives. However, we're still seeing the occasional failure of test 2 in smokes, so twaks the timing a little further.
1 parent 4304943 commit 9770e07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/File-Glob/t/rt131211.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ is $count,10,
6363

6464
SKIP: {
6565
skip "unstable or too small timing", 1 unless
66-
$elapsed_match >= 0.001 && $elapsed_fail >= 0.001;
66+
$elapsed_match >= 0.01 && $elapsed_fail >= 0.01;
6767
ok $elapsed_fail <= 10 * $elapsed_match,
6868
"time to fail less than 10x the time to match"
6969
or diag("elapsed_match=$elapsed_match elapsed_fail=$elapsed_fail");

0 commit comments

Comments
 (0)