summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-06-14 18:19:09 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-06-14 18:19:09 +0000
commit1dbe7fc0aed7b64471ced72c52e0560f07dedcd3 (patch)
treec2676229bf2b65b3d93f16a9d0c821ad992f0a61
parent59901f050591c04475d65acb1df0d8649861a11e (diff)
downloadATCD-1dbe7fc0aed7b64471ced72c52e0560f07dedcd3.tar.gz
ChangeLogTag:Fri Jun 14 14:17:49 2002 Carlos O'Ryan <coryan@atdesk.com>
-rw-r--r--ChangeLog8
-rw-r--r--ChangeLogs/ChangeLog-02a8
-rw-r--r--ChangeLogs/ChangeLog-03a8
-rw-r--r--bin/auto_run_tests.lst1
-rwxr-xr-xbin/auto_run_tests.pl8
5 files changed, 29 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index a81469fc4a0..455d981bf39 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Fri Jun 14 14:17:49 2002 Carlos O'Ryan <coryan@atdesk.com>
+
+ * bin/auto_run_tests.pl:
+ Fixed wrong application name in Usage message.
+
+ * bin/auto_run_tests.lst:
+ Add the Nested_Upcall_Crash test.
+
Fri Jun 14 09:34:41 2002 Ossama Othman <ossama@uci.edu>
* ace/OS.i (ctime):
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index a81469fc4a0..455d981bf39 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,11 @@
+Fri Jun 14 14:17:49 2002 Carlos O'Ryan <coryan@atdesk.com>
+
+ * bin/auto_run_tests.pl:
+ Fixed wrong application name in Usage message.
+
+ * bin/auto_run_tests.lst:
+ Add the Nested_Upcall_Crash test.
+
Fri Jun 14 09:34:41 2002 Ossama Othman <ossama@uci.edu>
* ace/OS.i (ctime):
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index a81469fc4a0..455d981bf39 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,11 @@
+Fri Jun 14 14:17:49 2002 Carlos O'Ryan <coryan@atdesk.com>
+
+ * bin/auto_run_tests.pl:
+ Fixed wrong application name in Usage message.
+
+ * bin/auto_run_tests.lst:
+ Add the Nested_Upcall_Crash test.
+
Fri Jun 14 09:34:41 2002 Ossama Othman <ossama@uci.edu>
* ace/OS.i (ctime):
diff --git a/bin/auto_run_tests.lst b/bin/auto_run_tests.lst
index 7773367a0dd..5b7b505cfc2 100644
--- a/bin/auto_run_tests.lst
+++ b/bin/auto_run_tests.lst
@@ -71,6 +71,7 @@ TAO/tests/Server_Leaks/run_test.pl
TAO/tests/Faults/run_test.pl: !MINIMUM
TAO/tests/Crashed_Callback/run_test.pl: !MINIMUM
TAO/tests/Crash_On_Write/run_test.pl: !ST
+TAO/tests/Nested_Upcall_Crash/run_test.pl
TAO/tests/NestedUpcall/Simple/run_test.pl: !ST
TAO/tests/NestedUpcall/MT_Client_Test/run_test.pl: !ST
TAO/tests/NestedUpcall/Triangle_Test/run_test.pl
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;
}