File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
graalpython/lib-python/3/test Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 4949from test .support import import_helper
5050import contextlib
5151import warnings
52+ import os
5253
5354support .requires_working_socket (module = True )
5455
@@ -451,6 +452,7 @@ def test_03_one_instr(self):
451452 self .run_test (one_instr_line )
452453 def test_04_no_pop_blocks (self ):
453454 self .run_test (no_pop_blocks )
455+ @unittest .skipIf (os .environ .get ('BYTECODE_DSL_INTERPRETER' ), "TODO: Fix tracing of the return" )
454456 def test_05_no_pop_tops (self ):
455457 self .run_test (no_pop_tops )
456458 def test_06_call (self ):
@@ -990,6 +992,7 @@ def func():
990992 (10 , 'line' ),
991993 (10 , 'return' )])
992994
995+ @unittest .skipIf (os .environ .get ('BYTECODE_DSL_INTERPRETER' ), "TODO: Fix tracing of the return" )
993996 def test_break_to_continue1 (self ):
994997
995998 def func ():
@@ -1013,6 +1016,7 @@ def func():
10131016 (3 , 'line' ),
10141017 (3 , 'return' )])
10151018
1019+ @unittest .skipIf (os .environ .get ('BYTECODE_DSL_INTERPRETER' ), "TODO: Fix tracing of the return" )
10161020 def test_break_to_continue2 (self ):
10171021
10181022 def func ():
You can’t perform that action at this time.
0 commit comments