From: Olivier Matz Date: Tue, 15 Mar 2016 12:25:22 +0000 (+0100) Subject: app/test: display command line when starting X-Git-Tag: spdx-start~7222 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=f632ff17a6b52e8873fb1c6e191658498994006c;p=dpdk.git 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 --- 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)