diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-06-14 18:19:09 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-06-14 18:19:09 +0000 |
commit | 1dbe7fc0aed7b64471ced72c52e0560f07dedcd3 (patch) | |
tree | c2676229bf2b65b3d93f16a9d0c821ad992f0a61 /bin/auto_run_tests.pl | |
parent | 59901f050591c04475d65acb1df0d8649861a11e (diff) | |
download | ATCD-1dbe7fc0aed7b64471ced72c52e0560f07dedcd3.tar.gz |
ChangeLogTag:Fri Jun 14 14:17:49 2002 Carlos O'Ryan <coryan@atdesk.com>
Diffstat (limited to 'bin/auto_run_tests.pl')
-rwxr-xr-x | bin/auto_run_tests.pl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/auto_run_tests.pl b/bin/auto_run_tests.pl index a0f6ef006ad..4b011b16014 100755 --- a/bin/auto_run_tests.pl +++ b/bin/auto_run_tests.pl @@ -4,7 +4,7 @@ eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}' # $Id$ # -*- perl -*- -# This file is for running the run_test.pl scripts listed in +# This file is for running the run_test.pl scripts listed in # auto_run_tests.lst. use lib "$ENV{ACE_ROOT}/bin"; @@ -23,7 +23,7 @@ $config_list = new PerlACE::ConfigList; $config_list->load ($ACE_ROOT."/bin/auto_run_tests.lst"); if (!getopts ('ac:ds:t') || $opt_h) { - print "run_test.pl [-a] [-c config] [-h] [-s sandbox] [-t]\n"; + print "auto_run_tests.pl [-a] [-c config] [-h] [-s sandbox] [-t]\n"; print "\n"; print "Runs the tests listed in auto_run_tests.lst\n"; print "\n"; @@ -80,8 +80,8 @@ foreach $test ($config_list->valid_entries ()) { $cmd = ''; if ($opt_s) { $cmd = "$opt_s \"perl $program $inherited_options\""; - } - else { + } + else { $cmd = $program.$inherited_options; } |