diff options
| author | Damien George <damien@micropython.org> | 2022-05-16 08:48:18 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2022-05-17 14:25:51 +1000 |
| commit | ab0a8f30866678ae713d2cf7c8b17e7265dadf8c (patch) | |
| tree | 7b2364729f5985f503bea14ba60166b8e1a21fff /tests | |
| parent | 5f650b7b7a200a32829fed4efffe606c69f0bc87 (diff) | |
tests/run-tests.py: Exclude settrace tests when using native emitter.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests')
| -rwxr-xr-x | tests/run-tests.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py index fa2db9d2e..60c2c3fe1 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 |
