summaryrefslogtreecommitdiff
path: root/TAO/tests/ORB_init/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/ORB_init/run_test.pl')
-rwxr-xr-xTAO/tests/ORB_init/run_test.pl22
1 files changed, 0 insertions, 22 deletions
diff --git a/TAO/tests/ORB_init/run_test.pl b/TAO/tests/ORB_init/run_test.pl
deleted file mode 100755
index e2eeaf316b3..00000000000
--- a/TAO/tests/ORB_init/run_test.pl
+++ /dev/null
@@ -1,22 +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;
-
-$orb_init = Process::Create ($EXEPREFIX."ORB_init$EXE_EXT ");
-
-
-$pid = $orb_init->TimedWait (15);
-if ($pid == -1) {
- print STDERR "ERROR: ORB_init timed out\n";
- $orb_init->Kill (); $orb_init->TimedWait (1);
-
- exit 1;
-}
-
-exit 0;