summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjohnc <johnc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-06-04 19:17:07 +0000
committerjohnc <johnc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-06-04 19:17:07 +0000
commitd98084f8a58786ee797699c2a2ac87a7d1386548 (patch)
tree058586136e1b8c84ca540d77255d344fc8849b25
parentf46d8ce4be009f2ab0c6e8fe63d9aae2d3a6ef89 (diff)
downloadATCD-d98084f8a58786ee797699c2a2ac87a7d1386548.tar.gz
ChangeLogTag: Mon Jun 4 19:14:02 UTC 2007 Ciju John <johnc at ociweb dot com>
-rw-r--r--TAO/ChangeLog5
-rwxr-xr-xTAO/tests/Oneway_Timeouts/run_test.pl6
2 files changed, 7 insertions, 4 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 30251a73d98..fc1699aa2ad 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,8 @@
+Mon Jun 4 19:14:02 UTC 2007 Ciju John <johnc at ociweb dot com>
+
+ * tests/Oneway_Timeouts/run_test.pl:
+ Fixed test script. Had minor syntactic and control structures.
+
Mon Jun 4 11:37:42 UTC 2007 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
* docs/ORBEndpoint.html: Updated the files to use
diff --git a/TAO/tests/Oneway_Timeouts/run_test.pl b/TAO/tests/Oneway_Timeouts/run_test.pl
index fef9b42f509..010f7b9c6cc 100755
--- a/TAO/tests/Oneway_Timeouts/run_test.pl
+++ b/TAO/tests/Oneway_Timeouts/run_test.pl
@@ -21,11 +21,9 @@ use strict;
my $srv_ior = PerlACE::LocalFile ("server.ior");
my $CLI = new PerlACE::Process ("client");
+my $SRV = new PerlACE::Process ("server");
if (PerlACE::is_vxworks_test()) {
- my $SRV = new PerlACE::Process ("server");
-}
-else {
- my $SRV = new PerlACE::ProcessVX ("server");
+ my $SRV = new PerlACE::ProcessVx ("server");
}
my $SRV_PORT = PerlACE::random_port();
my $SRV_ARGS = "-orbendpoint iiop://:$SRV_PORT";