tests/micropython: Move alloc-less traceback test to separate test file.

The native emitter doesn't provide proper traceback info so this test
should not be run in that case.
This commit is contained in:
Damien George
2016-11-21 17:39:23 +11:00
parent d70f87aaa2
commit 1f43d49f9e
5 changed files with 28 additions and 18 deletions

View File

@@ -291,6 +291,7 @@ def run_tests(pyb, tests, args):
skip_tests.add('misc/rge_sm.py') # requires yield
skip_tests.add('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('micropython/heapalloc_traceback.py') # because native doesn't have proper traceback info
for test_file in tests:
test_file = test_file.replace('\\', '/')