summaryrefslogtreecommitdiff
path: root/TAO/tests/NestedUpcall/MT_Client_Test/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/NestedUpcall/MT_Client_Test/run_test.pl')
-rwxr-xr-xTAO/tests/NestedUpcall/MT_Client_Test/run_test.pl37
1 files changed, 0 insertions, 37 deletions
diff --git a/TAO/tests/NestedUpcall/MT_Client_Test/run_test.pl b/TAO/tests/NestedUpcall/MT_Client_Test/run_test.pl
deleted file mode 100755
index 9e95d871e75..00000000000
--- a/TAO/tests/NestedUpcall/MT_Client_Test/run_test.pl
+++ /dev/null
@@ -1,37 +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;
-
-$server1_port = 0;
-$server2_port = 0;
-$ior1file = "theior1";
-$ior2file = "theior2";
-$sleeptime = 3;
-
-$SV1 = Process::Create ("server".$Process::EXE_EXT,
- " -ORBport $server1_port -o $ior1file ".
- " -ORBobjrefstyle url");
-
-$SV2 = Process::Create ("server".$Process::EXE_EXT,
- " -ORBport $server2_port -o $ior2file ".
- " -ORBobjrefstyle url");
-
-sleep $sleeptime;
-
-$status = system ("client".$Process::EXE_EXT.
- " -ORBport $client_port ".
- " -f $ior1file -g $ior2file -n 2 -i 10 -s 5");
-
-$SV1->Kill (); $SV1->Wait ();
-$SV2->Kill (); $SV2->Wait ();
-
-unlink $ior1file;
-unlink $ior2file;
-
-# @@ Capture any errors from the server too.
-exit $status;