diff --git a/tests/hwsim/run-tests.py b/tests/hwsim/run-tests.py index 49e42cd78..43c30efae 100755 --- a/tests/hwsim/run-tests.py +++ b/tests/hwsim/run-tests.py @@ -243,8 +243,7 @@ def main(): parser.add_argument('-i', action='store_true', dest='stdin_ctrl', help='stdin-controlled test case execution') parser.add_argument('tests', metavar='', nargs='*', type=str, - help='tests to run (only valid without -f)', - choices=[[]] + test_names) + help='tests to run (only valid without -f)') args = parser.parse_args() @@ -252,6 +251,15 @@ def main(): print('Invalid arguments - only one of (test, test modules, modules file) can be given.') sys.exit(2) + if args.tests: + fail = False + for t in args.tests: + if not t in test_names: + print('Invalid arguments - test "%s" not known' % t) + fail = True + if fail: + sys.exit(2) + if args.database: if not sqlite3_imported: print("No sqlite3 module found")