blob: dc67cc4a602b3021673515baccf23288ed94cd85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
& eval 'exec perl -S $0 $argv:q'
if 0;
# $Id$
# -*- perl -*-
use lib "../../../bin";
require ACEutils;
require Process;
$M = Process::Create ($EXEPREFIX."main".$EXE_EXT);
$test = $M->TimedWait (10);
if ($test == -1) {
print STDERR "ERROR: test timedout\n";
$M->Kill (); $M->TimedWait (1);
}
|