File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -4174,12 +4174,13 @@ def test_eventfd_select(self):
4174
4174
os .eventfd_read (fd )
4175
4175
4176
4176
@unittest .skipUnless (hasattr (os , 'timerfd_create' ), 'requires os.timerfd_create' )
4177
+ @unittest .skipIf (sys .platform == "android" , "gh-124873: Test is flaky on Android" )
4177
4178
@support .requires_linux_version (2 , 6 , 30 )
4178
4179
class TimerfdTests (unittest .TestCase ):
4179
4180
# 1 ms accuracy is reliably achievable on every platform except Android
4180
- # emulators, where we allow 100 ms (gh-124873 ).
4181
+ # emulators, where we allow 10 ms (gh-108277 ).
4181
4182
if sys .platform == "android" and platform .android_ver ().is_emulator :
4182
- CLOCK_RES_PLACES = 1
4183
+ CLOCK_RES_PLACES = 2
4183
4184
else :
4184
4185
CLOCK_RES_PLACES = 3
4185
4186
You can’t perform that action at this time.
0 commit comments