fix test.py comments
authorTom Henderson <tomh@tomh.org>
Mon, 02 Apr 2012 06:57:07 -0700
changeset 7819 30638cb5fd62
parent 7818 2a5c861ec2ee
child 7820 9ebf12703683
fix test.py comments
test.py
--- a/test.py	Sun Apr 01 11:34:04 2012 -0700
+++ b/test.py	Mon Apr 02 06:57:07 2012 -0700
@@ -906,8 +906,8 @@
                 if job.is_example or job.is_pyexample:
                     #
                     # If we have an example, the shell command is all we need to
-                    # know.  It will be something like "examples/udp-echo" or 
-                    # "examples/mixed-wireless.py"
+                    # know.  It will be something like "examples/udp/udp-echo" or 
+                    # "examples/wireless/mixed-wireless.py"
                     #
                     (job.returncode, standard_out, standard_err, et) = run_job_synchronously(job.shell_command, 
                         job.cwd, options.valgrind, job.is_pyexample, job.build_path)
@@ -1140,10 +1140,10 @@
     #  ./test,py:                                           run all of the suites and examples
     #  ./test.py --constrain=core:                          run all of the suites of all kinds
     #  ./test.py --constrain=unit:                          run all unit suites
-    #  ./test,py --suite=some-test-suite:                   run a single suite
-    #  ./test,py --example=udp/udp-echo:                    run no test suites
-    #  ./test,py --pyexample=wireless/mixed-wireless.py:    run no test suites
-    #  ./test,py --suite=some-suite --example=some-example: run the single suite
+    #  ./test.py --suite=some-test-suite:                   run a single suite
+    #  ./test.py --example=examples/udp/udp-echo:           run single example
+    #  ./test.py --pyexample=examples/wireless/mixed-wireless.py:  run python example
+    #  ./test.py --suite=some-suite --example=some-example: run the single suite
     #
     # We can also use the --constrain option to provide an ordering of test 
     # execution quite easily.