diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py index a74b61013c4848..9bf30b2cdc9bef 100644 --- a/Lib/test/_test_multiprocessing.py +++ b/Lib/test/_test_multiprocessing.py @@ -84,9 +84,9 @@ raise unittest.SkipTest("libasan has a pthread_create() dead lock related to thread+fork") -# gh-110666: Tolerate a difference of 100 ms when comparing timings +# gh-110666: Tolerate a difference of 1 ms when comparing timings # (clock resolution) -CLOCK_RES = 0.100 +CLOCK_RES = 0.001 def latin(s): diff --git a/Lib/test/test_asyncio/utils.py b/Lib/test/test_asyncio/utils.py index 44943e1fa7bc4e..c59b27bc6c5780 100644 --- a/Lib/test/test_asyncio/utils.py +++ b/Lib/test/test_asyncio/utils.py @@ -36,10 +36,8 @@ from test.support import threading_helper -# Use the maximum known clock resolution (gh-75191, gh-110088): Windows -# GetTickCount64() has a resolution of 15.6 ms. Use 50 ms to tolerate rounding -# issues. -CLOCK_RES = 0.050 +# Tolerate 1 ms difference when comparing timings. +CLOCK_RES = 0.001 def data_file(*filename): diff --git a/Lib/test/test_capi/test_time.py b/Lib/test/test_capi/test_time.py index 10b7fbf2c372a3..99aac461d1221d 100644 --- a/Lib/test/test_capi/test_time.py +++ b/Lib/test/test_capi/test_time.py @@ -9,7 +9,7 @@ SEC_TO_NS = 10 ** 9 DAY_TO_SEC = (24 * 60 * 60) # Worst clock resolution: maximum delta between two clock reads. -CLOCK_RES = 0.050 +CLOCK_RES = 0.001 class CAPITest(unittest.TestCase):