summaryrefslogtreecommitdiff
path: root/TAO/examples/PluggableUDP/tests/Basic/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/PluggableUDP/tests/Basic/run_test.pl')
-rwxr-xr-xTAO/examples/PluggableUDP/tests/Basic/run_test.pl12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/examples/PluggableUDP/tests/Basic/run_test.pl b/TAO/examples/PluggableUDP/tests/Basic/run_test.pl
index 175e3eb46d4..41ca7f667f9 100755
--- a/TAO/examples/PluggableUDP/tests/Basic/run_test.pl
+++ b/TAO/examples/PluggableUDP/tests/Basic/run_test.pl
@@ -5,30 +5,30 @@ eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
# $Id$
# -*- perl -*-
-use lib '../../../../../bin';
+use lib '../../../../bin';
use PerlACE::Run_Test;
$status = 0;
-$iorfile = PerlACE::LocalFile ("test.ior");
+$iorfile = PerlACE::LocalFile ("time.ior");
$SV = new PerlACE::Process ("server", "-o $iorfile -ORBendpoint diop://:12345");
-$CL = new PerlACE::Process ("client", "-k file://$iorfile -t 10 -i 10");
+$CL = new PerlACE::Process ("client", "-k file://$iorfile -t 10 -i 1000");
$SV->Spawn ();
-if (PerlACE::waitforfile_timed ($iorfile, 10) == -1) {
+if (PerlACE::waitforfile_timed ($iorfile, 5) == -1) {
print STDERR "ERROR: could not find file <$iorfile>\n";
$SV->Kill ();
exit 1;
}
-$client = $CL->SpawnWaitKill (90);
+$client = $CL->SpawnWaitKill (60);
if ($client != 0) {
print STDERR "ERROR: client returned $client\n";
$status = 1;
}
-$server = $SV->WaitKill (10);
+$server = $SV->WaitKill (5);
if ($server != 0) {
print STDERR "ERROR: server returned $server\n";