summaryrefslogtreecommitdiff
path: root/TAO/tests/DSI_Gateway/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/DSI_Gateway/run_test.pl')
-rwxr-xr-xTAO/tests/DSI_Gateway/run_test.pl66
1 files changed, 0 insertions, 66 deletions
diff --git a/TAO/tests/DSI_Gateway/run_test.pl b/TAO/tests/DSI_Gateway/run_test.pl
deleted file mode 100755
index 7823a636e0d..00000000000
--- a/TAO/tests/DSI_Gateway/run_test.pl
+++ /dev/null
@@ -1,66 +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 ACEutils;
-
-$svfile = "server.ior";
-unlink $svfile;
-$SV = Process::Create ($EXEPREFIX."server$EXE_EXT ",
- " -o $svfile");
-
-if (ACE::waitforfile_timed ($svfile, 5) == -1) {
- print STDERR "ERROR: cannot find file <$iorfile>\n";
- $SV->Kill (); $SV->TimedWait (1);
- exit 1;
-}
-
-$gwfile = "gateway.ior";
-unlink $gwfile;
-$GW = Process::Create ($EXEPREFIX."gateway$EXE_EXT ",
- " -k file://$svfile"
- . " -o $gwfile");
-
-if (ACE::waitforfile_timed ($gwfile, 5) == -1) {
- print STDERR "ERROR: cannot find file <$iorfile>\n";
- $GW->Kill (); $GW->TimedWait (1);
- exit 1;
-}
-
-$CL = Process::Create ($EXEPREFIX."client$EXE_EXT ",
- " -k file://$gwfile -x"
- . " -i 100");
-
-$client = $CL->TimedWait (60);
-if ($client == -1) {
- print STDERR "ERROR: client timedout\n";
- $CL->Kill (); $CL->TimedWait (1);
-}
-
-$server = $SV->TimedWait (5);
-if ($server == -1) {
- print STDERR "ERROR: server timedout\n";
- $SV->Kill (); $SV->TimedWait (1);
-}
-
-$gateway = $GW->TimedWait (5);
-if ($server == -1) {
- print STDERR "ERROR: server timedout\n";
- $GW->Kill (); $GW->TimedWait (1);
-}
-
-unlink $svfile;
-unlink $gwfile;
-
-if ($server != 0
- || $gateway != 0
- || $client != 0) {
- print STDERR "ERROR: test failed <$server,$gateway,$client>\n";
- exit 1;
-}
-
-exit 0;