summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/IDL_Test/run_test.pl')
-rwxr-xr-xTAO/tests/IDL_Test/run_test.pl14
1 files changed, 7 insertions, 7 deletions
diff --git a/TAO/tests/IDL_Test/run_test.pl b/TAO/tests/IDL_Test/run_test.pl
index 5f74f1ef6c2..dc67cc4a602 100755
--- a/TAO/tests/IDL_Test/run_test.pl
+++ b/TAO/tests/IDL_Test/run_test.pl
@@ -6,15 +6,15 @@ eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
# -*- perl -*-
use lib "../../../bin";
-use PerlACE::Run_Test;
+require ACEutils;
+require Process;
-$T = new PerlACE::Process ("main");
+$M = Process::Create ($EXEPREFIX."main".$EXE_EXT);
-$test = $T->SpawnWaitKill (60);
+$test = $M->TimedWait (10);
-if ($test != 0) {
- print STDERR "ERROR: test returned $test\n";
- exit 1;
+if ($test == -1) {
+ print STDERR "ERROR: test timedout\n";
+ $M->Kill (); $M->TimedWait (1);
}
-exit 0;