summaryrefslogtreecommitdiff
path: root/TAO/tests/ORB_destroy/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/ORB_destroy/run_test.pl')
-rwxr-xr-xTAO/tests/ORB_destroy/run_test.pl7
1 files changed, 6 insertions, 1 deletions
diff --git a/TAO/tests/ORB_destroy/run_test.pl b/TAO/tests/ORB_destroy/run_test.pl
index 9f00793287b..9b13b6bcad8 100755
--- a/TAO/tests/ORB_destroy/run_test.pl
+++ b/TAO/tests/ORB_destroy/run_test.pl
@@ -8,7 +8,12 @@ eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
use lib '../../../bin';
use PerlACE::Run_Test;
-$T = new PerlACE::Process ("ORB_destroy");
+if (PerlACE::is_vxworks_test()) {
+ $T = new PerlACE::ProcessVX ("ORB_destroy");
+}
+else {
+ $T = new PerlACE::Process ("ORB_destroy");
+}
$test = $T->SpawnWaitKill (60);