aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDamien George2016-04-07 08:53:24 +0100
committerDamien George2016-04-07 08:53:24 +0100
commit2c915e1ae61785ab6e33189581fb353ebd40d0ca (patch)
tree3015355b8f36e3b47c4280bb5301b0b921be6ed3 /tests
parentce8b4e87494a11f389de7629e82043d6fb70284e (diff)
py: Implement basic with support in native emitter.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/run-tests4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/run-tests b/tests/run-tests
index 887af701c..0185fbda6 100755
--- a/tests/run-tests
+++ b/tests/run-tests
@@ -244,7 +244,7 @@ def run_tests(pyb, tests, args):
skip_tests.update({'basics/%s.py' % t for t in 'gen_yield_from gen_yield_from_close gen_yield_from_ducktype gen_yield_from_exc gen_yield_from_iter gen_yield_from_send gen_yield_from_throw generator1 generator2 generator_args generator_close generator_closure generator_exc generator_return generator_send'.split()}) # require yield
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/%s.py' % t for t in 'try_reraise try_reraise2'.split()}) # require raise_varargs
- skip_tests.update({'basics/%s.py' % t for t in 'with1 with_break with_continue with_return'.split()}) # require with
+ 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/bool1.py') # seems to randomly fail
skip_tests.add('basics/class_bind_self.py') # requires yield
@@ -257,8 +257,6 @@ def run_tests(pyb, tests, args):
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
- skip_tests.add('io/stringio_with.py') # requires with
skip_tests.add('misc/features.py') # requires raise_varargs
skip_tests.add('misc/rge_sm.py') # requires yield
skip_tests.add('misc/print_exception.py') # because native doesn't have proper traceback info