diff options
author | Damien George <damien.p.george@gmail.com> | 2014-10-05 17:48:37 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-10-05 17:48:37 +0100 |
commit | d112cbfd7cc262860dfe371490fca3eea1c3481b (patch) | |
tree | 73d209be0435ccc4e2b9dae5021ad7f004ea3354 /tests | |
parent | 24119176e7ff39e55c8067624d74d17ac1f0ffa3 (diff) | |
parent | dc1ea1156a13c03d74433182e34e2a5fdb638f71 (diff) | |
download | micropython-d112cbfd7cc262860dfe371490fca3eea1c3481b.tar.gz micropython-d112cbfd7cc262860dfe371490fca3eea1c3481b.zip |
Merge pull request #891 from stinos/windows-tests
windows tests fixes
Diffstat (limited to 'tests')
-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 20fe1a541a..cc1020e60a 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -42,6 +42,12 @@ def run_tests(pyb, tests, args): if pyb is None and platform.architecture()[0] == '64bit': pass + # Some tests use unsupported features on Windows + if os.name == 'nt': + skip_tests.add('extmod\\ujson_loads.py') #works but -2e-3 is printed as -0.002000000000000001 except for mingw-w64 + skip_tests.add('import\\import_file.py') #works but CPython prints forward slashes + skip_tests.add('unix\\ffi_float.py') + # Some tests are known to fail with native emitter # Remove them from the below when they work if args.emit == 'native': |