File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -570,7 +570,7 @@ def skip_android_selinux(name):
570
570
is_wasi = sys .platform == "wasi"
571
571
572
572
def skip_emscripten_stack_overflow ():
573
- return unittest .skipIf (is_emscripten , "Exhausts limited stack on Emscripten" )
573
+ return unittest .skipIf (is_emscripten , "Exhausts stack on Emscripten" )
574
574
575
575
def skip_wasi_stack_overflow ():
576
576
return unittest .skipIf (is_wasi , "Exhausts stack on WASI" )
Original file line number Diff line number Diff line change @@ -3942,7 +3942,7 @@ def __del__(self):
3942
3942
# it as a leak.
3943
3943
del C .__del__
3944
3944
3945
- @unittest . skipIf ( support .is_emscripten , "Seems to works in Pyodide?" )
3945
+ @support .skip_emscripten_stack_overflow ( )
3946
3946
@support .skip_wasi_stack_overflow ()
3947
3947
def test_slots_trash (self ):
3948
3948
# Testing slot trash...
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ def test_del_attribute(self):
58
58
self .assertEqual (element .attrib , {'A' : 'B' , 'C' : 'D' })
59
59
60
60
@support .skip_wasi_stack_overflow ()
61
- @unittest . skipIf ( support .is_emscripten , "segfaults" )
61
+ @support .skip_emscripten_stack_overflow ( )
62
62
def test_trashcan (self ):
63
63
# If this test fails, it will most likely die via segfault.
64
64
e = root = cET .Element ('root' )
You can’t perform that action at this time.
0 commit comments