summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Trading/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/Trading/run_test.pl')
-rwxr-xr-xTAO/orbsvcs/tests/Trading/run_test.pl60
1 files changed, 0 insertions, 60 deletions
diff --git a/TAO/orbsvcs/tests/Trading/run_test.pl b/TAO/orbsvcs/tests/Trading/run_test.pl
deleted file mode 100755
index e520d88327a..00000000000
--- a/TAO/orbsvcs/tests/Trading/run_test.pl
+++ /dev/null
@@ -1,60 +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;
-require Process;
-
-$ior = "trading.ior";
-$sleeptime = 20;
-$status = 0;
-
-$TS = Process::Create ("..".$DIR_SEPARATOR.
- "..".$DIR_SEPARATOR.
- "Trading_Service".$DIR_SEPARATOR.
- "Trading_Service".$EXE_EXT,
- " -TSdumpior $ior ");
-
-if (ACE::waitforfile_timed ($ior, $sleeptime) == -1) {
- print STDERR "ERROR: waiting for trading service IOR file\n";
- $TS->Kill (); $TS->TimedWait (1);
- exit 1;
-}
-
-$E = Process::Create ($EXEPREFIX."export_test".$EXE_EXT,
- "-ORBTradingServiceIOR file://$ior");
-
-sleep $sleeptime;
-
-$I = Process::Create ($EXEPREFIX."import_test".$EXE_EXT,
- "-ORBTradingServiceIOR file://$ior");
-
-if ($I->TimedWait (60) == -1) {
- $status = 1;
- print STDERR "ERROR: import test timedout\n";
- $I->Kill (); $I->TimedWait (1);
-}
-
-$E->Terminate ();
-if ($E->TimedWait (15) == -1) {
- $status =1;
- print STDERR "ERROR: export test timedout\n";
- $E->Kill (); $E->TimedWait (1);
-}
-
-$TS->Terminate();
-if ($TS->TimedWait (15) == -1) {
- print STDERR "ERROR: couldn't terminate the trading service nicely\n";
- $TS->Kill (); $TS->TimedWait (1);
- $status = 1;
-}
-
-unlink $ior;
-
-exit $status;
-
-