equal
deleted
inserted
replaced
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 |