summaryrefslogtreecommitdiff
path: root/TAO/tests/MT_Server/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/MT_Server/run_test.pl')
-rwxr-xr-xTAO/tests/MT_Server/run_test.pl7
1 files changed, 6 insertions, 1 deletions
diff --git a/TAO/tests/MT_Server/run_test.pl b/TAO/tests/MT_Server/run_test.pl
index 39937f4a0c6..f806a1750f7 100755
--- a/TAO/tests/MT_Server/run_test.pl
+++ b/TAO/tests/MT_Server/run_test.pl
@@ -15,7 +15,12 @@ $sv_conf = PerlACE::LocalFile ("server$PerlACE::svcconf_ext");
unlink $iorfile;
-$SV = new PerlACE::Process ("server", "-ORBsvcconf $sv_conf -o $iorfile -n $threads");
+if (PerlACE::is_vxworks_test()) {
+ $SV = new PerlACE::ProcessVX ("server", "-ORBsvcconf server$PerlACE::svcconf_ext -o test.ior -n $threads");
+}
+else {
+ $SV = new PerlACE::Process ("server", "-ORBsvcconf $sv_conf -o $iorfile -n $threads");
+}
$CL1 = new PerlACE::Process ("client", "-k file://$iorfile -i 100");
$CL2 = new PerlACE::Process ("client", "-k file://$iorfile -i 100");
$CL3 = new PerlACE::Process ("client", "-k file://$iorfile -i 100");