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 691e84c commit bd80d60Copy full SHA for bd80d60
Lib/test/test_os.py
@@ -4174,12 +4174,13 @@ def test_eventfd_select(self):
4174
os.eventfd_read(fd)
4175
4176
@unittest.skipUnless(hasattr(os, 'timerfd_create'), 'requires os.timerfd_create')
4177
+@unittest.skipIf(sys.platform == "android", "gh-124873: Test is flaky on Android")
4178
@support.requires_linux_version(2, 6, 30)
4179
class TimerfdTests(unittest.TestCase):
4180
# 1 ms accuracy is reliably achievable on every platform except Android
- # emulators, where we allow 100 ms (gh-124873).
4181
+ # emulators, where we allow 10 ms (gh-108277).
4182
if sys.platform == "android" and platform.android_ver().is_emulator:
- CLOCK_RES_PLACES = 1
4183
+ CLOCK_RES_PLACES = 2
4184
else:
4185
CLOCK_RES_PLACES = 3
4186
0 commit comments