diff options
author | Damien George <damien.p.george@gmail.com> | 2018-09-04 14:33:43 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2018-09-04 14:33:43 +1000 |
commit | 938daa4ff91f980c257cc1896b22c830e86a52ba (patch) | |
tree | bf4a1af9fa58f2723e5085415309df00c58563d7 | |
parent | 4ae7111573f6866e027e2919e4d331c01108db23 (diff) |
tests/run-tests: Enable native tests for unwinding jumps.
-rwxr-xr-x | tests/run-tests | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/run-tests b/tests/run-tests index cfbd01777..cf59e4668 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -357,7 +357,6 @@ def run_tests(pyb, tests, args, base_path="."): skip_tests.update({'basics/%s.py' % t for t in 'bytes_gen class_store_class globals_del string_join'.split()}) # require yield skip_tests.update({'basics/async_%s.py' % t for t in 'def await await2 for for2 with with2 with_break with_return'.split()}) # require yield skip_tests.update({'basics/%s.py' % t for t in 'try_reraise try_reraise2'.split()}) # require raise_varargs - skip_tests.update({'basics/%s.py' % t for t in 'with_break with_continue with_return'.split()}) # require complete with support skip_tests.add('basics/array_construct2.py') # requires generators skip_tests.add('basics/builtin_hash_gen.py') # requires yield skip_tests.add('basics/class_bind_self.py') # requires yield @@ -365,10 +364,7 @@ def run_tests(pyb, tests, args, base_path="."): skip_tests.add('basics/del_local.py') # requires checking for unbound local skip_tests.add('basics/exception_chain.py') # raise from is not supported 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/try_finally_return3.py') # requires proper try finally code + skip_tests.add('basics/try_finally_return2.py') # requires raise_varargs skip_tests.add('basics/unboundlocal.py') # requires checking for unbound local skip_tests.add('import/gen_context.py') # requires yield_value skip_tests.add('misc/features.py') # requires raise_varargs |