From 1bb2504bc9928e68c612787803c84033a847a968 Mon Sep 17 00:00:00 2001 From: aqua Date: Sun, 12 Mar 2023 21:32:52 +0200 Subject: Build tests using HOSTTARGETBIN --- scripts/test_runner.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'scripts/test_runner.py') 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 -- cgit v1.2.1