summaryrefslogtreecommitdiff
path: root/TAO/tests/Timed_Buffered_Oneways/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Timed_Buffered_Oneways/run_test.pl')
-rwxr-xr-xTAO/tests/Timed_Buffered_Oneways/run_test.pl9
1 files changed, 7 insertions, 2 deletions
diff --git a/TAO/tests/Timed_Buffered_Oneways/run_test.pl b/TAO/tests/Timed_Buffered_Oneways/run_test.pl
index c2c3e986c6d..b533838ee93 100755
--- a/TAO/tests/Timed_Buffered_Oneways/run_test.pl
+++ b/TAO/tests/Timed_Buffered_Oneways/run_test.pl
@@ -8,12 +8,17 @@ eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
use lib "../../../bin";
use PerlACE::Run_Test;
-$iorfile = PerlACE::LocalFile ("ior");
+$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 -x");
$SV->Spawn ();