From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from proxy.6wind.com (host.76.145.23.62.rev.coltfrance.com [62.23.145.76]) by dpdk.org (Postfix) with ESMTP id 237932C1A for ; Tue, 15 Mar 2016 13:25:36 +0100 (CET) Received: from glumotte.dev.6wind.com (unknown [10.16.0.195]) by proxy.6wind.com (Postfix) with ESMTP id 1257824ACF for ; Tue, 15 Mar 2016 13:24:53 +0100 (CET) From: Olivier Matz To: dev@dpdk.org Date: Tue, 15 Mar 2016 13:25:22 +0100 Message-Id: <1458044722-32652-1-git-send-email-olivier.matz@6wind.com> X-Mailer: git-send-email 2.1.4 Subject: [dpdk-dev] [PATCH] autotests: display command line when starting X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Mar 2016 12:25:36 -0000 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 eadfb7f..291a821 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.1.4