diff options
author | aqua <aqua@iserlohn-fortress.net> | 2023-03-12 21:32:52 +0200 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2023-03-12 21:32:52 +0200 |
commit | 1bb2504bc9928e68c612787803c84033a847a968 (patch) | |
tree | ab8e45e8524dd45721e61551d5a092daef05a8ee /scripts/test_runner.py | |
parent | Add scripts/test_runner.py (diff) | |
download | kernel-1bb2504bc9928e68c612787803c84033a847a968.tar.xz |
Build tests using HOSTTARGETBIN
Diffstat (limited to 'scripts/test_runner.py')
-rwxr-xr-x | scripts/test_runner.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/test_runner.py b/scripts/test_runner.py index 80c3e30..53bebd3 100755 --- a/scripts/test_runner.py +++ b/scripts/test_runner.py @@ -25,9 +25,11 @@ def main(): cmd.append(os.path.join(cwd, test)) #print(cmd) - print(f' {test:.<48}', end='') + if not args.verbose: + print(f' {test:.<48}', end='') result = subprocess.run(cmd, capture_output=not args.verbose, check=False) - print('ok' if result.returncode == 0 else 'failed') + if not args.verbose: + print('ok' if result.returncode == 0 else 'failed') if result.returncode != 0: fail_count += 1 |