diff options
author | Damien George <damien.p.george@gmail.com> | 2016-03-07 12:00:16 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-03-07 12:00:16 +0000 |
commit | d964873e563f7ee39f93ccd8d98906372c04b7cd (patch) | |
tree | e6efdf2556fbb78ad2a7b3c513abfac0007aeb82 | |
parent | ce3beb1672a890726902988c4e9184ec6cf3e902 (diff) | |
download | micropython-d964873e563f7ee39f93ccd8d98906372c04b7cd.tar.gz micropython-d964873e563f7ee39f93ccd8d98906372c04b7cd.zip |
tests/run-tests: Fix logic when selecting test-dirs for a given target.
-rwxr-xr-x | tests/run-tests | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run-tests b/tests/run-tests index fc269a1fcc..b5a88408b3 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -363,7 +363,7 @@ def main(): if args.target == 'pyboard': # run pyboard tests test_dirs = ('basics', 'micropython', 'float', 'misc', 'extmod', 'pyb', 'pybnative', 'inlineasm') - if args.target == 'esp8266': + elif args.target == 'esp8266': test_dirs = ('basics', 'micropython', 'float', 'misc', 'extmod') elif args.target == 'wipy': # run WiPy tests |