diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-09-10 22:32:08 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-09-10 22:32:08 +0300 |
commit | d1f909005a40469b9d933a7ad75bb3327030538e (patch) | |
tree | ce04c0bab951469f760d7818ac45bdb0f72a18ab | |
parent | c46d480adcaea85375b68da5819561ab91eab001 (diff) |
tests/run-tests: Skip class_inplace_op for minimal profile.
Don't assume that MICROPY_PY_ALL_SPECIAL_METHODS is defined, as required
for inplace special methods.
Fixes Zephyr 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 c9f9efe77..2a43ff93d 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -308,6 +308,7 @@ def run_tests(pyb, tests, args, base_path="."): elif args.target == 'esp8266': 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('misc/rge_sm.py') # too large skip_tests.add('micropython/opt_level.py') # don't assume line numbers are stored |