summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/grid/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Simple/grid/run_test.pl')
-rwxr-xr-xTAO/examples/Simple/grid/run_test.pl39
1 files changed, 0 insertions, 39 deletions
diff --git a/TAO/examples/Simple/grid/run_test.pl b/TAO/examples/Simple/grid/run_test.pl
deleted file mode 100755
index 31d1ba57a89..00000000000
--- a/TAO/examples/Simple/grid/run_test.pl
+++ /dev/null
@@ -1,39 +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 = "grid.ior";
-
-$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 -x -w 12 -h 12 -p 2 -q 2 -v 2345");
-
-if ($client->TimedWait (60) == -1) {
- print STDERR "ERROR: client timedout\n";
- $status = 1;
- $client->Kill (); $client->TimedWait (1);
-}
-
-if ($SV->TimedWait (5) == -1) {
- print STDERR "ERROR: cannot terminate the server\n";
- $SV->Kill (); $SV->TimedWait (1);
- $status = 1;
-}
-
-unlink $iorfile;
-
-exit $status;