From 3e6c45455feb64ad6a4178196cdede4d1e46d0fe Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 19 Apr 2007 17:50:57 +0000 Subject: 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) --- source4/script/tests/selftest.pl | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source4/script') diff --git a/source4/script/tests/selftest.pl b/source4/script/tests/selftest.pl index a155220e03..2477cb1532 100755 --- a/source4/script/tests/selftest.pl +++ b/source4/script/tests/selftest.pl @@ -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 { -- cgit