From: David Galloway Date: Wed, 18 Aug 2021 17:30:22 +0000 (-0400) Subject: run-make-check.sh: Increase failure output log size X-Git-Tag: v15.2.15~49^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=3d4268085f97f406da4131d58d4c05e5518bda99;p=ceph.git run-make-check.sh: Increase failure output log size Fixes: https://tracker.ceph.com/issues/43566 Signed-off-by: David Galloway (cherry picked from commit e1b55f6878cfe847112959885d2fc44e91f3c44f) --- diff --git a/run-make-check.sh b/run-make-check.sh index 5da562fafbf3..1b56c2ded136 100755 --- a/run-make-check.sh +++ b/run-make-check.sh @@ -40,7 +40,7 @@ function run() { CHECK_MAKEOPTS=${CHECK_MAKEOPTS:-$DEFAULT_MAKEOPTS} if in_jenkins; then - if ! ctest $CHECK_MAKEOPTS --no-compress-output --output-on-failure -T Test; then + if ! ctest $CHECK_MAKEOPTS --no-compress-output --output-on-failure --test-output-size-failed 1024000 -T Test; then # do not return failure, as the jenkins publisher will take care of this rm -fr ${TMPDIR:-/tmp}/ceph-asok.* fi