blob: 225824c3ad1cbfce566b49817522e0fb797bafc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
& eval 'exec perl -S $0 $argv:q'
if 0;
# -*- perl -*-
use lib "$ENV{'ACE_ROOT'}/bin";
use PerlACE::TestTarget;
my $target= PerlACE::TestTarget::create_target (1) || die "Create target 1 failed\n";
my $theTest= $target->CreateProcess ("Bug_3674_Regression", "");
my $status= $theTest->SpawnWaitKill ($target->ProcessStartWaitInterval());
if ($status != 0) {
print STDERR "ERROR: theTest failed with status = $status\n";
}
exit $status;
|