summaryrefslogtreecommitdiff
path: root/TAO/tests/Timeout/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Timeout/run_test.pl')
-rwxr-xr-xTAO/tests/Timeout/run_test.pl7
1 files changed, 6 insertions, 1 deletions
diff --git a/TAO/tests/Timeout/run_test.pl b/TAO/tests/Timeout/run_test.pl
index efe8e9910fd..dd503620fd3 100755
--- a/TAO/tests/Timeout/run_test.pl
+++ b/TAO/tests/Timeout/run_test.pl
@@ -13,7 +13,12 @@ $status = 0;
$iorfile = PerlACE::LocalFile ("server.ior");
unlink $iorfile;
-$SV = new PerlACE::Process ("server", "-o $iorfile");
+if (PerlACE::is_vxworks_test()) {
+ $SV = new PerlACE::ProcessVX ("server", "-o server.ior");
+}
+else {
+ $SV = new PerlACE::Process ("server", "-o $iorfile");
+}
$CL = new PerlACE::Process ("client", "-ORBDebugLevel 0 -k file://$iorfile -l 2 -h 28");