Skip to content

Commit 40d7ad4

Browse files
committed
Skip tests with DSL interpreter tracing bugs
1 parent fc38d93 commit 40d7ad4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

graalpython/lib-python/3/test/test_sys_settrace.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
from test.support import import_helper
5050
import contextlib
5151
import warnings
52+
import os
5253

5354
support.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():

0 commit comments

Comments
 (0)