1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-14 01:57:53 +03:00

r25464: improve build-farm output...

metze
(This used to be commit 7b5d5777cb8cef5e502ae0851f600c7019eefa17)
This commit is contained in:
Stefan Metzmacher 2007-10-02 15:52:23 +00:00 committed by Gerald (Jerry) Carter
parent 650abae845
commit f069623ace

@ -59,7 +59,7 @@ sub end_testsuite($$$$$)
if ($ret == $expected_ret) {
$out .= "ALL OK\n";
} else {
$out .= "ERROR: $ret";
$out .= "ERROR: $ret\n";
$out .= $self->{test_output}->{$state->{NAME}};
}
@ -85,7 +85,11 @@ sub start_test($$$)
sub end_test($$$$$$)
{
my ($self, $state, $testname, $result, $expected, $reason) = @_;
my ($self, $state, $testname, $result, $unexpected, $reason) = @_;
return unless ($unexpected);
$self->{test_output}->{$state->{NAME}} .= "UNEXPECTED($result): $testname\n";
}
sub summary($)