Stop lying and saying trees aren't busted when they are. And bring

back the word "Horked".
This commit is contained in:
terry%netscape.com 1998-10-23 06:11:07 +00:00
parent 77b479e346
commit 3dd5d89333
2 changed files with 7 additions and 3 deletions

View File

@ -83,8 +83,12 @@ sub status
}
elsif ($type eq "Build")
{
$state = "Horked" unless ($state ne "Success");
$info{$tree}{$build} = $state;
if ($state =~ /success/i) {
$state = "Success";
} else {
$state = "Horked";
}
$info{$tree}{$build} = $state;
}
}

View File

@ -472,7 +472,7 @@ sub bot_tinderbox
{
foreach my $e (sort keys %{$$trees{$t}})
{
next if ($terse && $$trees{$t}{$e} ne "horked");
next if ($terse && $$trees{$t}{$e} ne "Horked");
$buf .= "[$e: $$trees{$t}{$e}] ";
$bustage++;
}