diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-02-13 18:28:02 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-03-03 15:38:43 +0200 |
commit | 2382d3031897a8e2d97e18218d3b77e2de37e1e1 (patch) | |
tree | 4152a14e03245eb7ae93bac73c498837d2502158 | |
parent | 259f1344ca38b202462d2d1b89e4820c110982ef (diff) |
tests/run-tests: Skips for esp8266.
-rwxr-xr-x | tests/run-tests | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/run-tests b/tests/run-tests index 534518858..fc269a1fc 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -218,6 +218,12 @@ def run_tests(pyb, tests, args): skip_tests.add('extmod/uheapq1.py') # uheapq not supported by WiPy skip_tests.add('extmod/urandom_basic.py') # requires urandom skip_tests.add('extmod/urandom_extra.py') # requires urandom + elif args.target == 'esp8266': + skip_tests.add('float/float2int.py') # requires at least fp32, there's float2int_fp30.py instead + skip_tests.add('float/string_format.py') # requires at least fp32, there's string_format_fp30.py instead + skip_tests.add('float/bytes_construct.py') # requires fp32 + skip_tests.add('float/bytearray_construct.py') # requires fp32 + skip_tests.add('misc/rge_sm.py') # too large # Some tests are known to fail on 64-bit machines if pyb is None and platform.architecture()[0] == '64bit': |