1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-26 08:16:12 +02:00

t9501: Re-fix max load test

Revert the previous attempt to skip this test on platforms where we
currently cannot determine the system load.  We want to make sure that
the max-load-limit codepath produces results cleanly, when gitweb is
updated and becomes capable of reading the load average by some other
method.

The code to check for load returns 0 if it doesn't know how to find
load.  It also checks to see if the current load is higher than the
max load.  So to force the script to quit early by setting the maxload
variable negative which should work for systems where we can detect
load (which should be a positive number) and systems where we can't
(where detected load is 0)

Signed-off-by: Brian Gernhardt <brian@gernhardtsoftware.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Brian Gernhardt 2010-02-06 09:50:03 -05:00 committed by Junio C Hamano
parent 6d0d465e20
commit ab35469de0

View File

@ -115,19 +115,12 @@ test_debug 'cat gitweb.output'
# ----------------------------------------------------------------------
# load checking
if test -e /proc/loadavg
then
test_set_prereq PROC_LOADAVG
else
say 'skipping load tests (no /proc/loadavg found)'
fi
# always hit the load limit
cat >>gitweb_config.perl <<\EOF
our $maxload = 0;
our $maxload = -1;
EOF
test_expect_success PROC_LOADAVG 'load checking: load too high (default action)' '
test_expect_success 'load checking: load too high (default action)' '
gitweb_run "p=.git" &&
grep "Status: 503 Service Unavailable" gitweb.headers &&
grep "503 - The load average on the server is too high" gitweb.body