diff options
| author | Ayke van Laethem | 2018-01-02 05:55:22 +0100 |
|---|---|---|
| committer | Damien George | 2018-05-02 17:20:48 +1000 |
| commit | 5eb198c4419d6620da2d500369bce0343ee2767e (patch) | |
| tree | 36dcc32300d5701ea7f465690c3d9bdebb336bc5 | |
| parent | 89b1c4a60cd43697e755b645127387d3b34e6d3f (diff) | |
tests/run-tests: Support esp32 as a target for running the test suite.
| -rwxr-xr-x | tests/run-tests | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/run-tests b/tests/run-tests index 71eab4905..82f05bfa8 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -516,7 +516,7 @@ the last matching regex is used: cmd_parser.add_argument('files', nargs='*', help='input test files') args = cmd_parser.parse_args() - EXTERNAL_TARGETS = ('pyboard', 'wipy', 'esp8266', 'minimal') + EXTERNAL_TARGETS = ('pyboard', 'wipy', 'esp8266', 'esp32', 'minimal') if args.target == 'unix' or args.list_tests: pyb = None elif args.target in EXTERNAL_TARGETS: @@ -531,7 +531,7 @@ the last matching regex is used: if args.target == 'pyboard': # run pyboard tests test_dirs = ('basics', 'micropython', 'float', 'misc', 'stress', 'extmod', 'pyb', 'pybnative', 'inlineasm') - elif args.target in ('esp8266', 'minimal'): + elif args.target in ('esp8266', 'esp32', 'minimal'): test_dirs = ('basics', 'micropython', 'float', 'misc', 'extmod') elif args.target == 'wipy': # run WiPy tests |
