From 704fd36525a77dfca1ae3423047e2f7c81b73634 Mon Sep 17 00:00:00 2001 From: Loic Dachary Date: Tue, 9 Jun 2015 17:21:05 +0200 Subject: [PATCH] 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 --- build-ceph.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5