summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/PICurrent/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Portable_Interceptors/PICurrent/run_test.pl')
-rwxr-xr-xTAO/tests/Portable_Interceptors/PICurrent/run_test.pl7
1 files changed, 6 insertions, 1 deletions
diff --git a/TAO/tests/Portable_Interceptors/PICurrent/run_test.pl b/TAO/tests/Portable_Interceptors/PICurrent/run_test.pl
index e7ee83f4526..8c021fc59c4 100755
--- a/TAO/tests/Portable_Interceptors/PICurrent/run_test.pl
+++ b/TAO/tests/Portable_Interceptors/PICurrent/run_test.pl
@@ -13,7 +13,12 @@ $file = PerlACE::LocalFile ("test.ior");
unlink $file;
-$SV = new PerlACE::Process ("server", "-o $file");
+if (PerlACE::is_vxworks_test()) {
+ $SV = new PerlACE::ProcessVX ("server", "-o test.ior");
+}
+else {
+ $SV = new PerlACE::Process ("server", "-o $file");
+}
$CL = new PerlACE::Process ("client", "-k file://$file");
print STDERR "\n\n==== Running PICurrent test\n";