diff options
author | Damien George <damien.p.george@gmail.com> | 2015-12-24 12:49:31 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-12-24 12:49:31 +0000 |
commit | 7ce8860b6b528f821bfa3a0ca3cc5277c4dc122c (patch) | |
tree | 7ce00dcf2c662f786eeab89134d23136580ffabe /tests | |
parent | 8047340d7532ec32bc9f2d603bffc0bc9544297f (diff) | |
download | micropython-7ce8860b6b528f821bfa3a0ca3cc5277c4dc122c.tar.gz micropython-7ce8860b6b528f821bfa3a0ca3cc5277c4dc122c.zip |
tests: Skip try-finally test for native emitter.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/run-tests | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/run-tests b/tests/run-tests index 3154324398..4f7213dc6f 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -240,6 +240,7 @@ def run_tests(pyb, tests, args): skip_tests.add('basics/for_range.py') # requires yield_value skip_tests.add('basics/try_finally_loops.py') # requires proper try finally code skip_tests.add('basics/try_finally_return.py') # requires proper try finally code + skip_tests.add('basics/try_finally_return2.py') # requires proper try finally code skip_tests.add('basics/unboundlocal.py') # requires checking for unbound local skip_tests.add('import/gen_context.py') # requires yield_value skip_tests.add('io/file_with.py') # requires with |