- run the tinderbox script in verbose mode

- use /\bStop\b/ instead of /^\*\*\* Error/ to identify errors
This commit is contained in:
Dag-Erling Smørgrav 2003-02-13 09:59:59 +00:00
parent 5ce623b8e0
commit 72d8c7ffcd

View file

@ -33,7 +33,7 @@ use strict;
my @BRANCHES = qw(CURRENT);
my @TARGETS = qw(world generic lint);
my @OPTIONS = qw(--update);
my @OPTIONS = qw(--update --verbose);
my %ARCHES = (
'alpha' => [ 'alpha' ],
'i386' => [ 'i386', 'pc98' ],
@ -96,7 +96,7 @@ sub tinderbox($$$$) {
$messages .= $_;
@accumulate = ();
$error = 0;
} elsif (m/^\*\*\* Error code/ && !m/ignored/) {
} elsif (m/\bStop\b/) {
push(@accumulate, $_);
$error = 1;
} else {