mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
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.
This commit is contained in:
parent
188aedf8bb
commit
3402f72688
1 changed files with 3 additions and 1 deletions
|
@ -626,7 +626,9 @@ class UtimeTests(unittest.TestCase):
|
|||
# bpo-30649: Tolerate 50 ms for slow Windows buildbots.
|
||||
delta = 0.050
|
||||
else:
|
||||
delta = 0.010
|
||||
# bpo-30649: PPC64 Fedora 3.x buildbot requires
|
||||
# at least a delta of 14 ms
|
||||
delta = 0.020
|
||||
st = os.stat(self.fname)
|
||||
msg = ("st_time=%r, current=%r, dt=%r"
|
||||
% (st.st_mtime, current, st.st_mtime - current))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue