summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/ForwardRequest/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Portable_Interceptors/ForwardRequest/run_test.pl')
-rwxr-xr-xTAO/tests/Portable_Interceptors/ForwardRequest/run_test.pl7
1 files changed, 6 insertions, 1 deletions
diff --git a/TAO/tests/Portable_Interceptors/ForwardRequest/run_test.pl b/TAO/tests/Portable_Interceptors/ForwardRequest/run_test.pl
index 08d3520bdbb..79926e14db6 100755
--- a/TAO/tests/Portable_Interceptors/ForwardRequest/run_test.pl
+++ b/TAO/tests/Portable_Interceptors/ForwardRequest/run_test.pl
@@ -16,7 +16,12 @@ $file2 = PerlACE::LocalFile ("test2.ior");
unlink $file1;
unlink $file2;
-$SV = new PerlACE::Process ("server", "-o $file1 -o $file2");
+if (PerlACE::is_vxworks_test()) {
+ $SV = new PerlACE::ProcessVX ("server", "-o test1.ior -o test2.ior");
+}
+else {
+ $SV = new PerlACE::Process ("server", "-o $file1 -o $file2");
+}
$CL = new PerlACE::Process ("client", "-k file://$file1 -k file://$file2");
$status = 0;