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 @@ -4124,12 +4124,13 @@ def test_eventfd_select(self):
4124
4124
os .eventfd_read (fd )
4125
4125
4126
4126
@unittest .skipUnless (hasattr (os , 'timerfd_create' ), 'requires os.timerfd_create' )
4127
+ @unittest .skipIf (sys .platform == "android" , "gh-124873: Test is flaky on Android" )
4127
4128
@support .requires_linux_version (2 , 6 , 30 )
4128
4129
class TimerfdTests (unittest .TestCase ):
4129
4130
# 1 ms accuracy is reliably achievable on every platform except Android
4130
- # emulators, where we allow 100 ms (gh-124873 ).
4131
+ # emulators, where we allow 10 ms (gh-108277 ).
4131
4132
if sys .platform == "android" and platform .android_ver ().is_emulator :
4132
- CLOCK_RES_PLACES = 1
4133
+ CLOCK_RES_PLACES = 2
4133
4134
else :
4134
4135
CLOCK_RES_PLACES = 3
4135
4136
You can’t perform that action at this time.
0 commit comments