summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Simple_Naming/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/Simple_Naming/run_test.pl')
-rwxr-xr-xTAO/orbsvcs/tests/Simple_Naming/run_test.pl46
1 files changed, 0 insertions, 46 deletions
diff --git a/TAO/orbsvcs/tests/Simple_Naming/run_test.pl b/TAO/orbsvcs/tests/Simple_Naming/run_test.pl
deleted file mode 100755
index 8db1f2d9c32..00000000000
--- a/TAO/orbsvcs/tests/Simple_Naming/run_test.pl
+++ /dev/null
@@ -1,46 +0,0 @@
-# $Id$
-# -*- perl -*-
-eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
- & eval 'exec perl -S $0 $argv:q'
- if 0;
-
-# This is a Perl script that runs the client and all the other servers that
-# are needed
-
-unshift @INC, '../../../../bin';
-require Process;
-require Uniqueid;
-
-# amount of delay between running the servers
-
-$sleeptime = 3;
-
-# variables for parameters
-
-$nsmport = 10000 + uniqueid ();
-
-sub name_server
-{
- my $args = "-ORBnameserviceport $nsmport";
- my $prog = "..$DIR_SEPARATOR..$DIR_SEPARATOR"."Naming_Service".$DIR_SEPARATOR.
- "Naming_Service".$Process::EXE_EXT;
-
- $NS = Process::Create ($prog, $args);
-}
-
-sub client
-{
- my $args = "-ORBnameserviceport $nsmport";
- my $prog = "client".$Process::EXE_EXT;
-
- system ($prog." ".$args);
-}
-
-name_server ();
-sleep $sleeptime;
-client ();
-
-$NS->Kill ();
-
-# @@ Capture any exit status from the processes.
-exit 0;