Skip to content

Commit

Permalink
tests: Skip some new tests when testing native emitter.
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgeorge committed Mar 25, 2015
1 parent 214179b commit 23d7fd5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/basics/array_construct.py
Expand Up @@ -14,6 +14,3 @@
# convert from other arrays
print(array('H', array('b', [1, 2])))
print(array('b', array('I', [1, 2])))

# construct from something with unknown length
print(array('i', (i for i in range(10))))
4 changes: 4 additions & 0 deletions tests/basics/array_construct2.py
@@ -0,0 +1,4 @@
from array import array

# construct from something with unknown length (requires generators)
print(array('i', (i for i in range(10))))
3 changes: 3 additions & 0 deletions tests/run-tests
Expand Up @@ -154,7 +154,10 @@ def run_tests(pyb, tests, args):
# Remove them from the below when they work
if args.emit == 'native':
skip_tests.update({'basics/%s.py' % t for t in 'bytes_gen class_store_class class_super class_super_object closure1 closure2 closure_defargs del_deref del_local fun3 fun_calldblstar fun_callstar fun_callstardblstar fun_defargs fun_defargs2 fun_kwargs fun_kwonly fun_kwonlydef fun_kwvarargs fun_varargs 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 globals_del string_format string_join subclass_native2_list subclass_native2_tuple try_finally_loops try_finally_return try_reraise try_reraise2 unboundlocal with1 with_break with_continue with_return'.split()})
skip_tests.add('basics/array_construct2.py') # requires generators
skip_tests.add('basics/bool1.py') # seems to randomly fail
skip_tests.add('basics/boundmeth1.py') # requires support for many args
skip_tests.add('basics/closure_manyvars.py') # requires closures
skip_tests.add('float/string_format.py')
skip_tests.add('float/cmath_fun.py') # requires f(*args) support
skip_tests.add('import/gen_context.py')
Expand Down

0 comments on commit 23d7fd5

Please sign in to comment.