From f632ff17a6b52e8873fb1c6e191658498994006c Mon Sep 17 00:00:00 2001 From: Olivier Matz Date: Tue, 15 Mar 2016 13:25:22 +0100 Subject: [PATCH] app/test: display command line when starting It's useful for debug purposes to see the command line used by autotest.py. Signed-off-by: Olivier Matz --- app/test/autotest_runner.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/test/autotest_runner.py b/app/test/autotest_runner.py index eadfb7f9a9..291a8213f4 100644 --- a/app/test/autotest_runner.py +++ b/app/test/autotest_runner.py @@ -72,6 +72,7 @@ def run_test_group(cmdline, test_group): startuplog = StringIO.StringIO() print >>startuplog, "\n%s %s\n" % ("="*20, test_group["Prefix"]) + print >>startuplog, "\ncmdline=%s" % cmdline child = pexpect.spawn(cmdline, logfile=startuplog) -- 2.20.1