diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/run_make_tests.pl | 3 | ||||
-rw-r--r-- | tests/scripts/features/patternrules | 14 | ||||
-rw-r--r-- | tests/test_driver.pl | 10 |
3 files changed, 13 insertions, 14 deletions
diff --git a/tests/run_make_tests.pl b/tests/run_make_tests.pl index 0419fef..82e7c38 100755 --- a/tests/run_make_tests.pl +++ b/tests/run_make_tests.pl @@ -190,7 +190,8 @@ sub run_make_with_options { sub print_usage { - &print_standard_usage ("run_make_tests", "[-make_path make_pathname]"); + &print_standard_usage ("run_make_tests", + "[-make_path make_pathname] [-valgrind]",); } sub print_help diff --git a/tests/scripts/features/patternrules b/tests/scripts/features/patternrules index 90525ae..53ec704 100644 --- a/tests/scripts/features/patternrules +++ b/tests/scripts/features/patternrules @@ -10,9 +10,9 @@ $dir = cwd; $dir =~ s,.*/([^/]+)$,../$1,; -# TEST #1: Make sure that multiple patterns where the same target -# can be built are searched even if the first one fails -# to match properly. +# TEST #0: Make sure that multiple patterns where the same target +# can be built are searched even if the first one fails +# to match properly. # run_make_test(' @@ -45,7 +45,7 @@ a: void '', ''); -# TEST #2: make sure files that are built via implicit rules are marked +# TEST #1: make sure files that are built via implicit rules are marked # as targets (Savannah bug #12202). # run_make_test(' @@ -69,7 +69,7 @@ foo.in: ; @: foo.out'); -# TEST #3: make sure intermidite files that also happened to be +# TEST #2: make sure intermediate files that also happened to be # prerequisites are not removed (Savannah bug #12267). # run_make_test(' @@ -96,7 +96,7 @@ $dir/foo.o"); unlink("$dir/foo.c"); -# TEST #4: make sure precious flag is set properly for targets +# TEST #3: make sure precious flag is set properly for targets # that are built via implicit rules (Savannah bug #13218). # run_make_test(' @@ -116,7 +116,7 @@ $(dir)/foo.bar: unlink("$dir/foo.bar"); -# TEST #5: make sure targets of a macthed implicit pattern rule never +# TEST #4: make sure targets of a matched implicit pattern rule are # never considered intermediate (Savannah bug #13022). # run_make_test(' diff --git a/tests/test_driver.pl b/tests/test_driver.pl index dd1b33b..cefe80f 100644 --- a/tests/test_driver.pl +++ b/tests/test_driver.pl @@ -547,12 +547,10 @@ sub print_standard_usage local($plname,@moreusage) = @_; local($line); - print "Usage: perl $plname [testname] [-verbose] [-detail] [-keep]\n"; - print " [-profile] [-usage] [-help] " - . "[-debug]\n"; - foreach $line (@moreusage) - { - print " $line\n"; + print "usage:\t$plname [testname] [-verbose] [-detail] [-keep]\n"; + print "\t\t\t[-profile] [-usage] [-help] [-debug]\n"; + foreach (@moreusage) { + print "\t\t\t$_\n"; } } |