summaryrefslogtreecommitdiff
path: root/TAO/tests/Policies/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Policies/run_test.pl')
-rwxr-xr-xTAO/tests/Policies/run_test.pl7
1 files changed, 6 insertions, 1 deletions
diff --git a/TAO/tests/Policies/run_test.pl b/TAO/tests/Policies/run_test.pl
index 4d9888e2950..e1c112bf13d 100755
--- a/TAO/tests/Policies/run_test.pl
+++ b/TAO/tests/Policies/run_test.pl
@@ -10,7 +10,12 @@ use PerlACE::Run_Test;
$threads = '10';
-$T = new PerlACE::Process ("Manipulation", "-n $threads");
+if (PerlACE::is_vxworks_test()) {
+ $T = new PerlACE::ProcessVX ("Manipulation", "-n $threads");
+}
+else {
+ $T = new PerlACE::Process ("Manipulation", "-n $threads");
+}
$test = $T->SpawnWaitKill (60);