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 8070bd2 commit b920227Copy full SHA for b920227
graalpython/lib-python/3/test/test_time.py
@@ -487,7 +487,9 @@ def test_process_time(self):
487
stop = time.process_time()
488
# use 20 ms because process_time() has usually a resolution of 15 ms
489
# on Windows
490
- self.assertLess(stop - start, 0.020)
+ # self.assertLess(stop - start, 0.020)
491
+ # GraalPy/Truffle change: use 50ms, to avoid rare transient due to jitter
492
+ self.assertLess(stop - start, 0.050)
493
494
info = time.get_clock_info('process_time')
495
self.assertTrue(info.monotonic)
0 commit comments