Skip to content

Commit

Permalink
tests/run-tests: Update "minimal" skipset to the current codebase.
Browse files Browse the repository at this point in the history
Testsuite tested to pass for Zephyr port.

Change-Id: Id4fd289a8256f36a1e96947c5e4f1c5aba5f3692
  • Loading branch information
pfalcon committed Apr 27, 2019
1 parent ebe6358 commit 307b67d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/run-tests
Original file line number Diff line number Diff line change
Expand Up @@ -337,8 +337,13 @@ def run_tests(pyb, tests, args, base_path="."):
skip_tests.add('misc/rge_sm.py') # too large
elif args.target == 'minimal':
skip_tests.add('basics/class_inplace_op.py') # all special methods not supported
skip_tests.add('basics/class1_slots_negative.py') # class slots support not enabled
skip_tests.add('basics/subclass_native_init.py')# native subclassing corner cases not support
skip_tests.add('misc/rge_sm.py') # too large
skip_tests.add('micropython/heapalloc_fail_bytearray2.py') # no array slice assignment enabled
skip_tests.add('micropython/heapalloc_fail_memoryview.py') # no memoryview
skip_tests.add('micropython/heapalloc_str_format_vs_modulo.py') # no micropython.mem_total
skip_tests.add('micropython/heapalloc_str_modulo.py') # no micropython.mem_total
skip_tests.add('micropython/opt_level.py') # don't assume line numbers are stored
elif args.target == 'nrf':
skip_tests.add('basics/memoryview1.py') # no item assignment for memoryview
Expand Down Expand Up @@ -395,7 +400,8 @@ def run_tests(pyb, tests, args, base_path="."):
is_native = test_name.startswith("native_") or test_name.startswith("viper_")
is_endian = test_name.endswith("_endian")
is_int_big = test_name.startswith("int_big") or test_name.endswith("_intbig")
is_set_type = test_name.startswith("set_") or test_name.startswith("frozenset")
is_set_type = test_name.startswith("set_") or test_name.startswith("frozenset") \
or test_name.endswith("_set")
is_async = test_name.startswith("async_")
is_const = test_name.startswith("const")

Expand Down

0 comments on commit 307b67d

Please sign in to comment.