File aarch64-prolong-timeout.patch of Package python3-base (Revision 14fc78c552d9c9b91a1a308567292ab2)
Currently displaying revision 14fc78c552d9c9b91a1a308567292ab2 , Show latest
xxxxxxxxxx
1
--- a/Lib/test/test_os.py
2
+++ b/Lib/test/test_os.py
3
4
else:
5
# bpo-30649: PPC64 Fedora 3.x buildbot requires
6
# at least a delta of 14 ms
7
- delta = 0.020
8
+ # 0.020 is still too little for out slow buildbots.
9
+ delta = 0.030
10
st = os.stat(self.fname)
11
msg = ("st_time=%r, current=%r, dt=%r"
12
% (st.st_mtime, current, st.st_mtime - current))
13