Skip to content

Commit 3402f72

Browse files
authored
bpo-30649: Revert utime delta in test_os (#2176)
PPC64 Fedora 3.x buildbot requires at least a delta of 14 ms: revert the utime delta to 20 ms. I tried 10 ms, but test_os failed on the PPC64 Fedora 3.x buildbot.
1 parent 188aedf commit 3402f72

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Lib/test/test_os.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,9 @@ def _test_utime_current(self, set_time):
626626
# bpo-30649: Tolerate 50 ms for slow Windows buildbots.
627627
delta = 0.050
628628
else:
629-
delta = 0.010
629+
# bpo-30649: PPC64 Fedora 3.x buildbot requires
630+
# at least a delta of 14 ms
631+
delta = 0.020
630632
st = os.stat(self.fname)
631633
msg = ("st_time=%r, current=%r, dt=%r"
632634
% (st.st_mtime, current, st.st_mtime - current))

0 commit comments

Comments
 (0)