1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

r22398: try to let all tests pass 5400 seconds is not enough

with the amount of tests we run now.

metze
This commit is contained in:
Stefan Metzmacher 2007-04-20 06:09:37 +00:00 committed by Gerald (Jerry) Carter
parent a6ba465fa8
commit b0a1f730f9
2 changed files with 3 additions and 3 deletions

View File

@ -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);

View File

@ -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";