From 911cb8512af48428a53858483aabcd44422605ce Mon Sep 17 00:00:00 2001 From: Tommaso Pecorella Date: Mon, 5 Jan 2015 19:43:49 +0100 Subject: [PATCH] [Tutorial] fix missing "s" from argument template --- doc/tutorial/source/getting-started.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/tutorial/source/getting-started.rst b/doc/tutorial/source/getting-started.rst index e6b81209b..7f0145650 100644 --- a/doc/tutorial/source/getting-started.rst +++ b/doc/tutorial/source/getting-started.rst @@ -798,12 +798,12 @@ by itself. Above, we used the ``./test.py`` script to run a whole slew of tests in parallel, by repeatedly invoking the real testing program, ``test-runner``. To invoke ``test-runner`` directly for a single test:: - $ ./waf --run test-runner --command-template="% --suite=mytest --verbose" + $ ./waf --run test-runner --command-template="%s --suite=mytest --verbose" This passes the arguments to the ``test-runner`` program. To print the available ``test-runner`` options:: - $ ./waf --run test-runner --command-template="% --help" + $ ./waf --run test-runner --command-template="%s --help" Debugging +++++++++