summaryrefslogtreecommitdiff
path: root/TAO/tests/MProfile_Connection_Timeout
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/MProfile_Connection_Timeout
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/MProfile_Connection_Timeout')
-rwxr-xr-xTAO/tests/MProfile_Connection_Timeout/run_test.pl7
1 files changed, 6 insertions, 1 deletions
diff --git a/TAO/tests/MProfile_Connection_Timeout/run_test.pl b/TAO/tests/MProfile_Connection_Timeout/run_test.pl
index 1788e40cc57..b0eaed5b425 100755
--- a/TAO/tests/MProfile_Connection_Timeout/run_test.pl
+++ b/TAO/tests/MProfile_Connection_Timeout/run_test.pl
@@ -16,7 +16,12 @@ unlink $iorfile2;
$status = 0;
-$SV1 = new PerlACE::Process ("server", "-o $iorfile1");
+if (PerlACE::is_vxworks_test()) {
+ $SV1 = new PerlACE::ProcessVX ("server", "-o server1.ior");
+}
+else {
+ $SV1 = new PerlACE::Process ("server", "-o $iorfile1");
+}
$SV2 = new PerlACE::Process ("server", "-o $iorfile2 -r");
$CL = new PerlACE::Process ("client", " -k file://$iorfile1 -m file://$iorfile2");