diff options
Diffstat (limited to 'TAO/orbsvcs/tests/EC_Throughput/run_test.pl')
-rwxr-xr-x | TAO/orbsvcs/tests/EC_Throughput/run_test.pl | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/TAO/orbsvcs/tests/EC_Throughput/run_test.pl b/TAO/orbsvcs/tests/EC_Throughput/run_test.pl deleted file mode 100755 index 9649696a746..00000000000 --- a/TAO/orbsvcs/tests/EC_Throughput/run_test.pl +++ /dev/null @@ -1,42 +0,0 @@ -# $Id$ -# -*- perl -*- -eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}' - & eval 'exec perl -S $0 $argv:q' - if 0; - -unshift @INC, '../../../../bin'; -require Process; - -$NS_ior = "NameService.ior"; -$sleeptime = 3; - -$NS = Process::Create ("..".$DIR_SEPARATOR. - "..".$DIR_SEPARATOR. - "Naming_Service".$DIR_SEPARATOR - "Naming_Service". - $Process::EXE_EXT." -o $NS_ior "); -sleep $sleeptime; - -$ES = Process::Create ("..".$DIR_SEPARATOR. - "..".$DIR_SEPARATOR. - "Event_Service". - "Event_Service".$Process::EXE_EXT); - -sleep $sleeptime; - -$C = Process::Create ("ECT_Consumer".$Process::EXE_EXT); - -sleep $sleeptime; - -$S = Process::Create ("ECT_Supplier".$Process::EXE_EXT); - -$C->Wait (); -$S->Wait (); - -$NS->Kill (); $NS->Wait (); -$ES->Kill (); $ES->Wait (); - -unlink $NS_ior; - -# @@ Capture the errors from the processes. -exit 0; |