summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/bank/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Simple/bank/run_test.pl')
-rwxr-xr-xTAO/examples/Simple/bank/run_test.pl40
1 files changed, 0 insertions, 40 deletions
diff --git a/TAO/examples/Simple/bank/run_test.pl b/TAO/examples/Simple/bank/run_test.pl
deleted file mode 100755
index 306d5b0a25d..00000000000
--- a/TAO/examples/Simple/bank/run_test.pl
+++ /dev/null
@@ -1,40 +0,0 @@
-eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
- & eval 'exec perl -S $0 $argv:q'
- if 0;
-
-# $Id$
-# -*- perl -*-
-
-use lib "../../../../bin";
-require ACEutils;
-require Process;
-$status = 0;
-
-$iorfile = "bank.ior";
-
-unlink $iorfile;
-
-$SV = Process::Create ($EXEPREFIX."server$EXE_EXT", "-o $iorfile ");
-
-if (ACE::waitforfile_timed ($iorfile, 15) == -1) {
- print STDERR "ERROR: timedout waiting for file <$iorfile>\n";
- $SV->Kill (); $SV->TimedWait (1);
- exit 1;
-}
-
-$client = Process::Create($EXEPREFIX."client$EXE_EXT","-f $iorfile");
-if ($client->TimedWait (60) == -1) {
- print STDERR "ERROR: the client timedout\n";
- $status = 1;
- $client->Kill (); $client->TimedWait (1);
-}
-
-$SV->Terminate (); if ($SV->TimedWait (5) == -1) {
- print STDERR "ERROR: cannot terminate the server\n";
- $SV->Kill (); $SV->TimedWait (1);
- $status = 1;
-}
-
-unlink $iorfile;
-
-exit $status;