aboutsummaryrefslogtreecommitdiff
path: root/tests/run-tests
diff options
context:
space:
mode:
authorDamien George2016-11-21 17:39:23 +1100
committerDamien George2016-11-21 17:39:23 +1100
commit1f43d49f9efa22d81e10be7bd20933986b4a3320 (patch)
tree95a3c2091ee575be6b7b3363d5cb10f45fced524 /tests/run-tests
parentd70f87aaa2fe31b099359b4b27444f3b289cdb8c (diff)
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.
Diffstat (limited to 'tests/run-tests')
-rwxr-xr-xtests/run-tests1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/run-tests b/tests/run-tests
index 4ac7d8e28..3898fb7aa 100755
--- a/tests/run-tests
+++ b/tests/run-tests
@@ -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('\\', '/')