summaryrefslogtreecommitdiff
path: root/TAO/tests/Connection_Timeout/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Connection_Timeout/run_test.pl')
-rwxr-xr-xTAO/tests/Connection_Timeout/run_test.pl7
1 files changed, 6 insertions, 1 deletions
diff --git a/TAO/tests/Connection_Timeout/run_test.pl b/TAO/tests/Connection_Timeout/run_test.pl
index aa5d7eb4309..8a5b5817f0f 100755
--- a/TAO/tests/Connection_Timeout/run_test.pl
+++ b/TAO/tests/Connection_Timeout/run_test.pl
@@ -10,7 +10,12 @@ use PerlACE::Run_Test;
$status = 0;
-$CL = new PerlACE::Process ("client", "");
+if (PerlACE::is_vxworks_test()) {
+ $CL = new PerlACE::ProcessVX ("client", "");
+}
+else {
+ $CL = new PerlACE::Process ("client", "");
+}
$client = $CL->SpawnWaitKill (25);