From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7425C138334 for ; Thu, 2 Jan 2020 21:00:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8E83FE0A91; Thu, 2 Jan 2020 21:00:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0C40EE0A91 for ; Thu, 2 Jan 2020 21:00:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9114334DE65 for ; Thu, 2 Jan 2020 21:00:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 21CB237 for ; Thu, 2 Jan 2020 21:00:40 +0000 (UTC) From: "Rolf Eike Beer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Rolf Eike Beer" Message-ID: <1577998824.a6f188af2dd06082b26db38d9eeffa7cd6aba38b.dakon@gentoo> Subject: [gentoo-commits] proj/tatt:master commit in: templates/ X-VCS-Repository: proj/tatt X-VCS-Files: templates/tatt_functions.sh X-VCS-Directories: templates/ X-VCS-Committer: dakon X-VCS-Committer-Name: Rolf Eike Beer X-VCS-Revision: a6f188af2dd06082b26db38d9eeffa7cd6aba38b X-VCS-Branch: master Date: Thu, 2 Jan 2020 21:00:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: db259e60-4bca-4afb-bcf1-7d00db054bf0 X-Archives-Hash: 049148dadb2667577d0e357db35481c7 commit: a6f188af2dd06082b26db38d9eeffa7cd6aba38b Author: Rolf Eike Beer sf-mail de> AuthorDate: Thu Jan 2 20:59:10 2020 +0000 Commit: Rolf Eike Beer sf-mail de> CommitDate: Thu Jan 2 21:00:24 2020 +0000 URL: https://gitweb.gentoo.org/proj/tatt.git/commit/?id=a6f188af collect more test logs Signed-off-by: Rolf Eike Beer sf-mail.de> templates/tatt_functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/tatt_functions.sh b/templates/tatt_functions.sh index d2b5bc8..57d3d65 100644 --- a/templates/tatt_functions.sh +++ b/templates/tatt_functions.sh @@ -34,7 +34,7 @@ function tatt_pkg_error LOGNAME=$(mktemp -p "${TATT_BUILDLOGDIR}" "${CP/\//_}_${TATT_TEST_TYPE}_XXXXX") mv "${BUILDLOG}" "${LOGNAME}" echo " log has been saved as ${LOGNAME}" >> "${TATT_REPORTFILE}" - TESTLOGS=($(find ${BUILDDIR}/work -name test-suite.log -o -name testsuite.log -o -name LastTest.log)) + TESTLOGS=($(find ${BUILDDIR}/work -iname '*test*log*')) if [ ${#TESTLOGS[@]} -gt 0 ]; then tar cf ${LOGNAME}.tar ${TESTLOGS[@]} echo " testsuite logs have been saved as ${LOGNAME}.tar" >> "${TATT_REPORTFILE}"