git.droids-corp.org
/
dpdk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
437958e
)
app/test: display command line when starting
author
Olivier Matz
<olivier.matz@6wind.com>
Tue, 15 Mar 2016 12:25:22 +0000
(13:25 +0100)
committer
Thomas Monjalon
<thomas.monjalon@6wind.com>
Thu, 24 Mar 2016 20:12:45 +0000
(21:12 +0100)
It's useful for debug purposes to see the command line used by
autotest.py.
Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
app/test/autotest_runner.py
patch
|
blob
|
history
diff --git
a/app/test/autotest_runner.py
b/app/test/autotest_runner.py
index
eadfb7f
..
291a821
100644
(file)
--- 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)