aboutsummaryrefslogtreecommitdiff
path: root/scripts/test_runner.py
diff options
context:
space:
mode:
authoraqua <aqua@iserlohn-fortress.net>2023-03-12 21:32:52 +0200
committeraqua <aqua@iserlohn-fortress.net>2023-03-12 21:32:52 +0200
commit1bb2504bc9928e68c612787803c84033a847a968 (patch)
treeab8e45e8524dd45721e61551d5a092daef05a8ee /scripts/test_runner.py
parentAdd scripts/test_runner.py (diff)
downloadkernel-1bb2504bc9928e68c612787803c84033a847a968.tar.xz
Build tests using HOSTTARGETBIN
Diffstat (limited to 'scripts/test_runner.py')
-rwxr-xr-xscripts/test_runner.py6
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