summaryrefslogtreecommitdiff
path: root/TAO/examples/POA/RootPOA/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/POA/RootPOA/run_test.pl')
-rwxr-xr-xTAO/examples/POA/RootPOA/run_test.pl24
1 files changed, 0 insertions, 24 deletions
diff --git a/TAO/examples/POA/RootPOA/run_test.pl b/TAO/examples/POA/RootPOA/run_test.pl
deleted file mode 100755
index e54f8e731a5..00000000000
--- a/TAO/examples/POA/RootPOA/run_test.pl
+++ /dev/null
@@ -1,24 +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 Process;
-require ACEutils;
-
-$T = Process::Create ($EXEPREFIX."RootPOA".$EXE_EXT);
-
-$client = $T->TimedWait (60);
-if ($client == -1) {
- print STDERR "ERROR: test timedout\n";
- $T->Kill (); $T->TimedWait (1);
-}
-
-if ($client == -1) {
- exit 1;
-}
-
-exit 0;