From: Loic Dachary Date: Tue, 9 Jun 2015 15:21:05 +0000 (+0200) Subject: make check times out after 1h30 instead of 1h00 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F54%2Fhead;p=autobuild-ceph.git make check times out after 1h30 instead of 1h00 Because of http://tracker.ceph.com/issues/11931 make check on hammer can take more than one hour without it being a real problem. So we need to be more generous with the timeout. Signed-off-by: Loic Dachary --- diff --git a/build-ceph.sh b/build-ceph.sh index d7b4177..0ead50c 100755 --- a/build-ceph.sh +++ b/build-ceph.sh @@ -90,7 +90,7 @@ make -j$(get_processors) "$@" || exit 4 trap "pkill -9 ceph-osd ; pkill -9 ceph-mon" EXIT -if ! ../maxtime 3600 make $(maybe_parallel_make_check) check "$@" ; then +if ! ../maxtime 5400 make $(maybe_parallel_make_check) check "$@" ; then display_failures . exit 5 fi