Skip to content

Commit

Permalink
t9501: Skip testing load if we can't detect it
Browse files Browse the repository at this point in the history
Currently gitweb only knows how to check for load using /proc/loadavg,
which isn't available on all systems.  We shouldn't fail the test just
because we don't know how to check the system load.

Signed-off-by: Brian Gernhardt <brian@gernhardtsoftware.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Brian Gernhardt authored and Junio C Hamano committed Feb 6, 2010
1 parent 71f1a21 commit 6448e0c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion t/t9501-gitweb-standalone-http-status.sh
Original file line number Diff line number Diff line change
Expand Up @@ -115,12 +115,19 @@ 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;
EOF

test_expect_success 'load checking: load too high (default action)' '
test_expect_success PROC_LOADAVG '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
Expand Down

0 comments on commit 6448e0c

Please sign in to comment.