]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: Fix run-tests.py module file (-l) handling
authorJouni Malinen <jouni@codeaurora.org>
Fri, 15 Mar 2019 09:18:20 +0000 (11:18 +0200)
committerJouni Malinen <j@w1.fi>
Fri, 15 Mar 2019 09:18:20 +0000 (11:18 +0200)
Prior cleanup broke the indentation here and made the addition of test
cases unreachable.

Fixes: 0663ae22ffc7 ("tests: Do not use tabs for indentation")
Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
tests/hwsim/run-tests.py

index 2b8d4d25e319086bfd67422403b720a62cb2b90c..9161576dc51be34c263d8f99b7a4053fa2eff0bf 100755 (executable)
@@ -282,7 +282,7 @@ def main():
                 line = line.strip()
                 if not line or line.startswith('#'):
                     continue
-                    args.testmodules.append(line)
+                args.testmodules.append(line)
 
     tests_to_run = []
     if args.tests: