doc/tutorial/source/getting-started.rst
changeset 11122 78b3c90cddcb
parent 11116 d4baad1975de
child 11123 893aa21e059c
equal deleted inserted replaced
11121:a887a3d37d5b 11122:78b3c90cddcb
   796 Another particularly useful example is to run the ``mytest`` test suite
   796 Another particularly useful example is to run the ``mytest`` test suite
   797 by itself.  Above, we used the ``./test.py`` script to run a whole slew of
   797 by itself.  Above, we used the ``./test.py`` script to run a whole slew of
   798 tests in parallel, by repeatedly invoking the real testing program,
   798 tests in parallel, by repeatedly invoking the real testing program,
   799 ``test-runner``.  To invoke ``test-runner`` directly for a single test::
   799 ``test-runner``.  To invoke ``test-runner`` directly for a single test::
   800 
   800 
   801   $ ./waf --run test-runner --command-template="% --suite=mytest --verbose"
   801   $ ./waf --run test-runner --command-template="%s --suite=mytest --verbose"
   802 
   802 
   803 This passes the arguments to the ``test-runner`` program.  To print the
   803 This passes the arguments to the ``test-runner`` program.  To print the
   804 available ``test-runner`` options::
   804 available ``test-runner`` options::
   805 
   805 
   806   $ ./waf --run test-runner --command-template="% --help"
   806   $ ./waf --run test-runner --command-template="%s --help"
   807 
   807 
   808 Debugging
   808 Debugging
   809 +++++++++
   809 +++++++++
   810 
   810 
   811 To run |ns3| programs under the control of another utility, such as
   811 To run |ns3| programs under the control of another utility, such as