tests/run-tests: Factor out list supported external boards.

To get consistent error messages, etc.
This commit is contained in:
Paul Sokolovsky 2016-05-07 18:45:16 +03:00
parent 88153dc56a
commit 5ec11f565b
1 changed files with 3 additions and 2 deletions

View File

@ -351,14 +351,15 @@ def main():
cmd_parser.add_argument('files', nargs='*', help='input test files') cmd_parser.add_argument('files', nargs='*', help='input test files')
args = cmd_parser.parse_args() args = cmd_parser.parse_args()
if args.target in ('pyboard', 'wipy', 'esp8266'): EXTERNAL_TARGETS = ('pyboard', 'wipy', 'esp8266')
if args.target in EXTERNAL_TARGETS:
import pyboard import pyboard
pyb = pyboard.Pyboard(args.device, args.baudrate, args.user, args.password) pyb = pyboard.Pyboard(args.device, args.baudrate, args.user, args.password)
pyb.enter_raw_repl() pyb.enter_raw_repl()
elif args.target == 'unix': elif args.target == 'unix':
pyb = None pyb = None
else: else:
raise ValueError('target must be either unix, pyboard or wipy') raise ValueError('target must be either %s or unix' % ", ".join(EXTERNAL_TARGETS))
if len(args.files) == 0: if len(args.files) == 0:
if args.test_dirs is None: if args.test_dirs is None: