File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
com.oracle.graal.python.test/src/tests/unittest_tags Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 14
14
*graalpython.lib-python.3.test.test_sys.SysModuleTest.test_43581
15
15
*graalpython.lib-python.3.test.test_sys.SysModuleTest.test__enablelegacywindowsfsencoding
16
16
*graalpython.lib-python.3.test.test_sys.SysModuleTest.test_clear_type_cache
17
+ *graalpython.lib-python.3.test.test_sys.SysModuleTest.test_current_frames
17
18
*graalpython.lib-python.3.test.test_sys.SysModuleTest.test_debugmallocstats
18
19
*graalpython.lib-python.3.test.test_sys.SysModuleTest.test_dlopenflags
19
20
*graalpython.lib-python.3.test.test_sys.SysModuleTest.test_executable
28
29
*graalpython.lib-python.3.test.test_sys.SysModuleTest.test_ioencoding_nonascii
29
30
*graalpython.lib-python.3.test.test_sys.SysModuleTest.test_no_duplicates_in_meta_path
30
31
*graalpython.lib-python.3.test.test_sys.SysModuleTest.test_recursionlimit
32
+ *graalpython.lib-python.3.test.test_sys.SysModuleTest.test_recursionlimit_fatalerror
31
33
*graalpython.lib-python.3.test.test_sys.SysModuleTest.test_recursionlimit_recovery
32
34
*graalpython.lib-python.3.test.test_sys.SysModuleTest.test_refcount
33
35
*graalpython.lib-python.3.test.test_sys.SysModuleTest.test_setcheckinterval
Original file line number Diff line number Diff line change @@ -279,6 +279,7 @@ def set_recursion_limit_at_depth(depth, limit):
279
279
finally :
280
280
sys .setrecursionlimit (oldlimit )
281
281
282
+ @support .impl_detail ("GR-26299" , graalvm = False )
282
283
def test_recursionlimit_fatalerror (self ):
283
284
# A fatal error occurs if a second recursion limit is hit when recovering
284
285
# from a first one.
@@ -372,6 +373,7 @@ def test_getframe(self):
372
373
)
373
374
374
375
# sys._current_frames() is a CPython-only gimmick.
376
+ @support .impl_detail ("sys._current_frames" , graalvm = False )
375
377
@test .support .reap_threads
376
378
def test_current_frames (self ):
377
379
import threading
You can’t perform that action at this time.
0 commit comments