summaryrefslogtreecommitdiff
path: root/TAO/tests/NestedUpcall/Simple/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/NestedUpcall/Simple/run_test.pl')
-rwxr-xr-xTAO/tests/NestedUpcall/Simple/run_test.pl14
1 files changed, 12 insertions, 2 deletions
diff --git a/TAO/tests/NestedUpcall/Simple/run_test.pl b/TAO/tests/NestedUpcall/Simple/run_test.pl
index 277d5028c81..3f272e45fda 100755
--- a/TAO/tests/NestedUpcall/Simple/run_test.pl
+++ b/TAO/tests/NestedUpcall/Simple/run_test.pl
@@ -13,7 +13,12 @@ $iorfile = PerlACE::LocalFile ("test.ior");
unlink $iorfile;
-$SV = new PerlACE::Process ("server", "-f $iorfile");
+if (PerlACE::is_vxworks_test()) {
+ $SV = new PerlACE::ProcessVX ("server", "-f test.ior");
+}
+else {
+ $SV = new PerlACE::Process ("server", "-f $iorfile");
+}
$CL = new PerlACE::Process ("client", "-k file://$iorfile -x");
print STDERR "\nrunning ST version of the client and the server\n\n";
@@ -43,7 +48,12 @@ if ($server != 0) {
unlink $iorfile;
-$SV->Arguments ("-f $iorfile -t 3");
+if (PerlACE::is_vxworks_test()) {
+ $SV->Arguments ("-f test.ior -t 3");
+}
+else {
+ $SV->Arguments ("-f $iorfile -t 3");
+}
$CL->Arguments ("-k file://$iorfile -x -n 10");
print STDERR "\nrunning MT version of the client and the server\n\n";