summaryrefslogtreecommitdiff
path: root/TAO/tests/Cache_Growth_Test/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Cache_Growth_Test/run_test.pl')
-rwxr-xr-xTAO/tests/Cache_Growth_Test/run_test.pl7
1 files changed, 6 insertions, 1 deletions
diff --git a/TAO/tests/Cache_Growth_Test/run_test.pl b/TAO/tests/Cache_Growth_Test/run_test.pl
index 2411ad764d5..35db649c452 100755
--- a/TAO/tests/Cache_Growth_Test/run_test.pl
+++ b/TAO/tests/Cache_Growth_Test/run_test.pl
@@ -12,7 +12,12 @@ $iorfile = PerlACE::LocalFile ("server.ior");
unlink $iorfile;
$status = 0;
-$SV = new PerlACE::Process ("server", "-o $iorfile");
+if (PerlACE::is_vxworks_test()) {
+ $SV = new PerlACE::ProcessVX ("server", "-o server.ior");
+}
+else {
+ $SV = new PerlACE::Process ("server", "-o $iorfile");
+}
$CL = new PerlACE::Process ("client", " -k file://$iorfile");
$CL1 = new PerlACE::Process ("client", " -k file://$iorfile -x");