From 5e98c79d69377a93105a2d9b591ca4d6f560513c Mon Sep 17 00:00:00 2001 From: Luca Colagrande Date: Mon, 25 Sep 2023 10:14:58 +0200 Subject: [PATCH] simulate.py: Print simulation command in verbose mode --- util/sim/simulate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/sim/simulate.py b/util/sim/simulate.py index 2c3f8285f..525855d6d 100755 --- a/util/sim/simulate.py +++ b/util/sim/simulate.py @@ -186,7 +186,7 @@ def run_test(test, args): # which are executed in parallel if 'rundir' in test: cmd = f'cd {test["rundir"]} && {cmd}' - if not quiet: + if not quiet or args.verbose: print(f'$ {cmd}', flush=True) # Run simulation