mirror of
https://github.com/samba-team/samba.git
synced 2025-03-08 04:58:40 +03:00
r22384: print out the total selftest runtime
and the time for each test we hit the max runtime of smbd on some hosts metze (This used to be commit 7b173c3421c30d6b5ce67f87ee81f011734e8c1a)
This commit is contained in:
parent
8b3830fbbf
commit
3e6c45455f
@ -191,6 +191,7 @@ sub buildfarm_start_msg($)
|
||||
$out .= "Running test $state->{NAME} (level 0 stdout)\n";
|
||||
$out .= "--==--==--==--==--==--==--==--==--==--==--\n";
|
||||
$out .= scalar(localtime())."\n";
|
||||
$out .= "SELFTEST RUNTIME: " . ($state->{START} - $start) . "s";
|
||||
$out .= "NAME: $state->{NAME}\n";
|
||||
$out .= "CMD: $state->{CMD}\n";
|
||||
|
||||
@ -211,6 +212,8 @@ sub buildfarm_end_msg($$$)
|
||||
my ($state, $expected_ret, $ret) = @_;
|
||||
my $out = "";
|
||||
|
||||
$out .= "TEST RUNTIME: " . (time() - $state->{START}) . "s";
|
||||
|
||||
if ($ret == $expected_ret) {
|
||||
$out .= "ALL OK\n";
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user