summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2005-02-15 20:05:55 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2005-02-15 20:05:55 +0000
commitbd420256e311c57b241eb458d7f07dd06b5a8739 (patch)
tree61a016a41f1f126249d8e519ca4b6ca2993b13b8
parent0ccbab928e7f66afc31c0e6368f9acd7fdc526ef (diff)
downloadATCD-bd420256e311c57b241eb458d7f07dd06b5a8739.tar.gz
ChangeLogTag: Tue Feb 15 14:04:51 2005 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--TAO/ChangeLog8
-rwxr-xr-xTAO/orbsvcs/tests/Notify/MT_Dispatching/run_test.pl6
2 files changed, 10 insertions, 4 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index b450019d90f..fc3c111aa0e 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,11 @@
+Tue Feb 15 14:04:51 2005 Chad Elliott <elliott_c@ociweb.com>
+
+ * orbsvcs/tests/Notify/MT_Dispatching/run_test.pl:
+
+ Corrected an error when resetting the consumer and supplier
+ arguments. The exe name was accidentally added to the arguments
+ too.
+
Tue Feb 15 13:29:35 2005 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/orbsvcs/AV/AVStreams_i.h:
diff --git a/TAO/orbsvcs/tests/Notify/MT_Dispatching/run_test.pl b/TAO/orbsvcs/tests/Notify/MT_Dispatching/run_test.pl
index 3e8f9d13bfa..732fb9bb9da 100755
--- a/TAO/orbsvcs/tests/Notify/MT_Dispatching/run_test.pl
+++ b/TAO/orbsvcs/tests/Notify/MT_Dispatching/run_test.pl
@@ -78,10 +78,8 @@ if (PerlACE::waitforfile_timed ($naming_ior, $startup_timeout) == -1) {
for $test (@tests)
{
- $Supplier->Arguments ("Structured_Supplier",
- "-ORBInitRef NameService=file://$naming_ior ");
- $Consumer->Arguments ("Structured_Consumer",
- "-ORBInitRef NameService=file://$naming_ior ");
+ $Supplier->Arguments ("-ORBInitRef NameService=file://$naming_ior ");
+ $Consumer->Arguments ("-ORBInitRef NameService=file://$naming_ior ");
print STDERR "\nTesting $test->{description} ....\n\n";