summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Event_Latency/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/Event_Latency/run_test.pl')
-rwxr-xr-xTAO/orbsvcs/tests/Event_Latency/run_test.pl59
1 files changed, 0 insertions, 59 deletions
diff --git a/TAO/orbsvcs/tests/Event_Latency/run_test.pl b/TAO/orbsvcs/tests/Event_Latency/run_test.pl
deleted file mode 100755
index 0e7e7fbff42..00000000000
--- a/TAO/orbsvcs/tests/Event_Latency/run_test.pl
+++ /dev/null
@@ -1,59 +0,0 @@
-eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
- & eval 'exec perl -S $0 $argv:q'
- if 0;
-
-# $Id$
-# -*- perl -*-
-
-unshift @INC, '../../../../bin';
-require Process;
-require ACEutils;
-
-$NS_ior = "NameService.ior";
-$sleeptime = 3;
-$status = 0;
-
-$NS = Process::Create ("..".$DIR_SEPARATOR
- ."..".$DIR_SEPARATOR
- ."Naming_Service".$DIR_SEPARATOR
- ."Naming_Service".$EXE_EXT,
- " -o $NS_ior ");
-
-if (ACE::waitforfile_timed ($NS_ior, 5) == -1) {
- print STDERR "ERROR: waiting for naming service IOR file\n";
- $NS->Kill (); $NS->TimedWait (1);
- exit 1;
-}
-
-$ES = Process::Create ("..".$DIR_SEPARATOR
- ."..".$DIR_SEPARATOR
- ."Event_Service".$DIR_SEPARATOR
- ."Event_Service".$EXE_EXT,
- "-ORBInitRef NameService=file://$NS_ior -t new");
-
-sleep $sleeptime;
-
-$TEST = Process::Create (".".$DIR_SEPARATOR."Event_Latency".$EXE_EXT,
- "-ORBInitRef NameService=file://$NS_ior"
- ." -j -m 100");
-
-if ($TEST->TimedWait (60) == -1) {
- print STDERR "ERROR: test timedout\n";
- $status = 1;
- $TEST->Kill (); $TEST->TimedWait (1);
-}
-
-
-$NS->Terminate();
-$ES->Terminate();
-if ($NS->TimedWait (5) == -1 || $ES->TimedWait (5) == -1) {
- print STDERR "ERROR: couldn't terminate the services nicely\n";
- $NS->Kill (); $NS->TimedWait (1);
- $ES->Kill (); $ES->TimedWait (1);
- $status = 1;
-}
-
-unlink $NS_ior;
-
-# @@ Capture any errors from the server too.
-exit $status;