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