From b9ed2cc4ba760a90295ca31b0f09a2dd26a6629b Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 20 Apr 2007 06:09:37 +0000 Subject: r22398: try to let all tests pass 5400 seconds is not enough with the amount of tests we run now. metze (This used to be commit b0a1f730f9d83546064b7438b8dac350eeb32a3b) --- source4/script/tests/Samba4.pm | 2 +- source4/script/tests/selftest.pl | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/source4/script/tests/Samba4.pm b/source4/script/tests/Samba4.pm index b182d094b3..e393fe7798 100644 --- a/source4/script/tests/Samba4.pm +++ b/source4/script/tests/Samba4.pm @@ -710,7 +710,7 @@ sub setup_member($$$$) my $env = $self->provision_member($path, $dc_vars); - $self->check_or_start($env, ($ENV{SMBD_MAX_TIME} or 5400)); + $self->check_or_start($env, ($ENV{SMBD_MAX_TIME} or 6500)); $self->wait_for_start($env); diff --git a/source4/script/tests/selftest.pl b/source4/script/tests/selftest.pl index 2477cb1532..a9b1708f60 100755 --- a/source4/script/tests/selftest.pl +++ b/source4/script/tests/selftest.pl @@ -191,7 +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 .= "SELFTEST RUNTIME: " . ($state->{START} - $start) . "s\n"; $out .= "NAME: $state->{NAME}\n"; $out .= "CMD: $state->{CMD}\n"; @@ -212,7 +212,7 @@ sub buildfarm_end_msg($$$) my ($state, $expected_ret, $ret) = @_; my $out = ""; - $out .= "TEST RUNTIME: " . (time() - $state->{START}) . "s"; + $out .= "TEST RUNTIME: " . (time() - $state->{START}) . "s\n"; if ($ret == $expected_ret) { $out .= "ALL OK\n"; -- cgit