]> git.apps.os.sepia.ceph.com Git - autobuild-ceph.git/commitdiff
make check times out after 1h30 instead of 1h00 54/head
authorLoic Dachary <ldachary@redhat.com>
Tue, 9 Jun 2015 15:21:05 +0000 (17:21 +0200)
committerLoic Dachary <ldachary@redhat.com>
Tue, 9 Jun 2015 15:21:05 +0000 (17:21 +0200)
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 <loic@dachary.org>
build-ceph.sh

index d7b41770f3371ea87dfa73eb03d7fb3ae3d56f37..0ead50c9c5ddf9a16746b354446e7435b4547b7a 100755 (executable)
@@ -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