summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-11-20 01:55:01 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-11-20 01:55:01 +0000
commit32ede8e1ab59e9934bd229b5355bb0969697f9de (patch)
tree4fd48f0e02ab502efbcceb0767a31a2c8d5d63c1
parent698f4b12141c17493b6ca84266d77aee019ce06d (diff)
downloadATCD-32ede8e1ab59e9934bd229b5355bb0969697f9de.tar.gz
ChangeLogTag: Tue Nov 19 18:14:10 2002 Pradeep Gore <pradeep@oomworks.com>
-rw-r--r--ChangeLog10
-rw-r--r--ChangeLogs/ChangeLog-03a10
-rw-r--r--bin/auto_run_tests.lst23
-rwxr-xr-xbin/auto_run_tests.pl20
4 files changed, 48 insertions, 15 deletions
diff --git a/ChangeLog b/ChangeLog
index 4c832dc799b..9ff5ae0887a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+Tue Nov 19 18:14:10 2002 Pradeep Gore <pradeep@oomworks.com>
+
+ * bin/auto_run_tests.lst:
+ Modified Notify configurations.
+
+ * bin/auto_run_tests.pl:
+ Checkin on behalf of Irfan - Changed logic so that it checks for
+ the existence of the executable and not of the parameters passed
+ to the executable.
+
Tue Nov 19 07:09:15 2002 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
* bin/auto_run_tests.lst: Tests not runnable in minimum
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 4c832dc799b..9ff5ae0887a 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,13 @@
+Tue Nov 19 18:14:10 2002 Pradeep Gore <pradeep@oomworks.com>
+
+ * bin/auto_run_tests.lst:
+ Modified Notify configurations.
+
+ * bin/auto_run_tests.pl:
+ Checkin on behalf of Irfan - Changed logic so that it checks for
+ the existence of the executable and not of the parameters passed
+ to the executable.
+
Tue Nov 19 07:09:15 2002 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
* bin/auto_run_tests.lst: Tests not runnable in minimum
diff --git a/bin/auto_run_tests.lst b/bin/auto_run_tests.lst
index 3b63b2b5d77..e33e4bb56bd 100644
--- a/bin/auto_run_tests.lst
+++ b/bin/auto_run_tests.lst
@@ -190,17 +190,18 @@ TAO/orbsvcs/tests/ImplRepo/run_test.pl: SANDBOX
TAO/orbsvcs/tests/ImplRepo/NameService/run_test.pl: SANDBOX
TAO/orbsvcs/tests/ImplRepo/locked/run_test.pl: !MINIMUM
-TAO/orbsvcs/tests/Notify/Basic/run_test.pl: !MINIMUM
-TAO/orbsvcs/tests/Notify/Blocking/run_test.pl
-TAO/orbsvcs/tests/Notify/Discarding/run_test.pl
-TAO/orbsvcs/tests/Notify/MT_Dispatching/run_test.pl
-TAO/orbsvcs/tests/Notify/Ordering/run_test.pl
-TAO/orbsvcs/tests/Notify/performance-tests/Filter/run_test.pl
-TAO/orbsvcs/tests/Notify/performance-tests/RedGreen/run_test.pl: !MINIMUM
-TAO/orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/run_test.pl
-TAO/orbsvcs/tests/Notify/Sequence_Multi_Filter/run_test.pl
-TAO/orbsvcs/tests/Notify/Structured_Filter/run_test.pl
-TAO/orbsvcs/tests/Notify/Structured_Multi_Filter/run_test.pl
+TAO/orbsvcs/tests/Notify/Basic/run_test.pl notify.reactive.conf
+TAO/orbsvcs/tests/Notify/Basic/run_test.pl notify.mt.conf: !ST
+TAO/orbsvcs/tests/Notify/Blocking/run_test.pl: !ST
+TAO/orbsvcs/tests/Notify/Discarding/run_test.pl: !ST
+TAO/orbsvcs/tests/Notify/MT_Dispatching/run_test.pl: !ST
+TAO/orbsvcs/tests/Notify/Ordering/run_test.pl: !ST
+TAO/orbsvcs/tests/Notify/performance-tests/Filter/run_test.pl: !ST
+TAO/orbsvcs/tests/Notify/performance-tests/RedGreen/run_test.pl: !ST
+TAO/orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/run_test.pl: !ST
+TAO/orbsvcs/tests/Notify/Sequence_Multi_Filter/run_test.pl: !ST
+TAO/orbsvcs/tests/Notify/Structured_Filter/run_test.pl: !ST
+TAO/orbsvcs/tests/Notify/Structured_Multi_Filter/run_test.pl: !ST
# BREAKS !linux 'TAO/orbsvcs/tests/EC_Mcast/run_test.pl
# FAILS 'TAO/orbsvcs/tests/EC_Multiple/run_test.pl
diff --git a/bin/auto_run_tests.pl b/bin/auto_run_tests.pl
index 4b011b16014..e0bd2b73b47 100755
--- a/bin/auto_run_tests.pl
+++ b/bin/auto_run_tests.pl
@@ -65,10 +65,22 @@ foreach $test ($config_list->valid_entries ()) {
chdir ($ACE_ROOT."/$directory")
|| die "Error: Cannot chdir to $ACE_ROOT/$directory";
- if (! -e $program) {
- print STDERR "Error: $test does not exist\n";
- next;
- }
+ if ($program =~ /(.*?) (.*)/)
+ {
+ if (! -e $1)
+ {
+ print STDERR "Error: $directory.$1 does not exist\n";
+ next;
+ }
+ }
+ else
+ {
+ if (! -e $program)
+ {
+ print STDERR "Error: $directory.$program does not exist\n";
+ next;
+ }
+ }
### Genrate the -ExeSubDir and -Config options
my $inherited_options = " -ExeSubDir $PerlACE::Process::ExeSubDir ";