blob: fbf93564456183c5e6b8a3549740ab1da3ddc493 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
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;
use strict;
my $final_result = 0;
my @testsToRun = qw(Bug_3549_Regression
Bug_3558_Regression);
foreach my $process (@testsToRun) {
my $server = PerlACE::TestTarget::create_target (1) || die "Create target 1 failed\n";
my $P = $server->CreateProcess ($process);
print "Running $process ...\n";
my $result = $P->Spawn;
if ($result != 0) {
print "FAILED $process\n";
$final_result = 1;
next;
}
$result = $P->WaitKill($server->ProcessStartWaitInterval());
if ($result != 0) {
print "FAILED $process\n";
$final_result = 1;
next;
}
print "SUCCESS\n";
}
exit $final_result;
|