From e1b55f6878cfe847112959885d2fc44e91f3c44f Mon Sep 17 00:00:00 2001 From: David Galloway Date: Wed, 18 Aug 2021 13:30:22 -0400 Subject: [PATCH] run-make-check.sh: Increase failure output log size Fixes: https://tracker.ceph.com/issues/43566 Signed-off-by: David Galloway --- run-make-check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-make-check.sh b/run-make-check.sh index 7d64f968e121d..b17bbcac7543b 100755 --- a/run-make-check.sh +++ b/run-make-check.sh @@ -44,7 +44,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 -- 2.39.5