summaryrefslogtreecommitdiff
path: root/TAO/tests/InterOp-Naming
diff options
context:
space:
mode:
authormcorino <mcorino@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-04-15 12:33:21 +0000
committermcorino <mcorino@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-04-15 12:33:21 +0000
commitc3461273c5327fd4e9b860cb97cfa1e6229254d9 (patch)
tree850914d64f56066ff79de721f17a121577d97b63 /TAO/tests/InterOp-Naming
parente4460b64f5c3184ff70ff94c003c1d4cf00a578e (diff)
downloadATCD-c3461273c5327fd4e9b860cb97cfa1e6229254d9.tar.gz
ChangeLogTag: Fri Apr 15 12:30:12 UTC 2005 Martin Corino <mcorino@remedy.nl>
Diffstat (limited to 'TAO/tests/InterOp-Naming')
-rwxr-xr-xTAO/tests/InterOp-Naming/run_test.pl16
1 files changed, 12 insertions, 4 deletions
diff --git a/TAO/tests/InterOp-Naming/run_test.pl b/TAO/tests/InterOp-Naming/run_test.pl
index 57ccfce2675..25be880b026 100755
--- a/TAO/tests/InterOp-Naming/run_test.pl
+++ b/TAO/tests/InterOp-Naming/run_test.pl
@@ -18,9 +18,17 @@ $status = 0;
print STDERR "\n\n==== InitRef test\n";
unlink $file;
-$SV = new PerlACE::Process ("INS_test_server",
- "-ORBEndpoint iiop://1.0@"."$TARGETHOSTNAME:$port "
- . " -i object_name -o $file -ORBDottedDecimalAddresses 1");
+if (PerlACE::is_vxworks_test()) {
+ $TARGETHOSTNAME = $ENV{'ACE_RUN_VX_TGT_HOST'};
+ $SV = new PerlACE::ProcessVX ("INS_test_server",
+ "-ORBEndpoint iiop://1.0@"."$TARGETHOSTNAME:$port "
+ . " -i object_name -o test.ior -ORBDottedDecimalAddresses 1");
+}
+else {
+ $SV = new PerlACE::Process ("INS_test_server",
+ "-ORBEndpoint iiop://1.0@"."$TARGETHOSTNAME:$port "
+ . " -i object_name -o $file -ORBDottedDecimalAddresses 1");
+}
$SV->Spawn ();
@@ -31,7 +39,7 @@ if (PerlACE::waitforfile_timed ($file, 10) == -1) {
}
$CL = new PerlACE::Process ("INS_test_client",
- " random_service "
+ "random_service "
."-ORBInitRef random_service="
."corbaloc::1.1@"."$TARGETHOSTNAME:$port/object_name");