From 11764590faa316047e6ed8151c199e2761dbda50 Mon Sep 17 00:00:00 2001 From: mudathirmahgoub Date: Wed, 22 Jun 2022 17:51:15 -0500 Subject: [PATCH] print run_process command (#8859) --- test/regress/cli/run_regression.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/regress/cli/run_regression.py b/test/regress/cli/run_regression.py index 87cb2b551..92ffbf72f 100755 --- a/test/regress/cli/run_regression.py +++ b/test/regress/cli/run_regression.py @@ -434,7 +434,7 @@ def run_process(args, cwd, timeout, s_input=None): output and the error output are empty and the exit code is 124.""" cmd = " ".join([shlex.quote(a) for a in args]) if isinstance(args, list) else args - + print("Running command: {}".format(str(cmd))) out = bytes() err = bytes() exit_status = STATUS_TIMEOUT -- 2.30.2