From ab0a8f30866678ae713d2cf7c8b17e7265dadf8c Mon Sep 17 00:00:00 2001 From: Damien George Date: Mon, 16 May 2022 08:48:18 +1000 Subject: [PATCH] tests/run-tests.py: Exclude settrace tests when using native emitter. Signed-off-by: Damien George --- tests/run-tests.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/run-tests.py b/tests/run-tests.py index fa2db9d2eb..60c2c3fe19 100755 --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -529,6 +529,9 @@ def run_tests(pyb, tests, args, result_dir, num_threads=1): "misc/print_exception.py" ) # because native doesn't have proper traceback info skip_tests.add("misc/sys_exc_info.py") # sys.exc_info() is not supported for native + skip_tests.add("misc/sys_settrace_features.py") # sys.settrace() not supported + skip_tests.add("misc/sys_settrace_generator.py") # sys.settrace() not supported + skip_tests.add("misc/sys_settrace_loop.py") # sys.settrace() not supported skip_tests.add( "micropython/emg_exc.py" ) # because native doesn't have proper traceback info