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 79BA713835A for ; Thu, 15 Oct 2020 19:15:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9231DE0875; Thu, 15 Oct 2020 19:15:52 +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 7CD3AE0875 for ; Thu, 15 Oct 2020 19:15:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 EE90533C84E for ; Thu, 15 Oct 2020 19:15:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 63164388 for ; Thu, 15 Oct 2020 19:15:49 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1602789341.5367c6831f9e7ff245a235d9c0308b75dcc33772.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/pixman/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/pixman/pixman-0.40.0.ebuild x11-libs/pixman/pixman-9999.ebuild X-VCS-Directories: x11-libs/pixman/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 5367c6831f9e7ff245a235d9c0308b75dcc33772 X-VCS-Branch: master Date: Thu, 15 Oct 2020 19:15:49 +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: 3ede997d-f7a3-4cd7-993d-35622a99fb80 X-Archives-Hash: 3f8662aaf8c6d54a0e66929d69428fc7 commit: 5367c6831f9e7ff245a235d9c0308b75dcc33772 Author: Matt Turner gentoo org> AuthorDate: Thu Oct 15 19:12:53 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Thu Oct 15 19:15:41 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5367c683 x11-libs/pixman: die if tests fail Signed-off-by: Matt Turner gentoo.org> x11-libs/pixman/pixman-0.40.0.ebuild | 2 +- x11-libs/pixman/pixman-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/x11-libs/pixman/pixman-0.40.0.ebuild b/x11-libs/pixman/pixman-0.40.0.ebuild index d4510830221..51a3421ad1b 100644 --- a/x11-libs/pixman/pixman-0.40.0.ebuild +++ b/x11-libs/pixman/pixman-0.40.0.ebuild @@ -51,7 +51,7 @@ multilib_src_compile() { multilib_src_test() { export OMP_NUM_THREADS=$(makeopts_jobs) - meson test -v -C "${BUILD_DIR}" -t 100 + meson test -v -C "${BUILD_DIR}" -t 100 || die "tests failed" } multilib_src_install() { diff --git a/x11-libs/pixman/pixman-9999.ebuild b/x11-libs/pixman/pixman-9999.ebuild index 9c15b1e0965..b614ed9cc15 100644 --- a/x11-libs/pixman/pixman-9999.ebuild +++ b/x11-libs/pixman/pixman-9999.ebuild @@ -51,7 +51,7 @@ multilib_src_compile() { multilib_src_test() { export OMP_NUM_THREADS=$(makeopts_jobs) - meson test -v -C "${BUILD_DIR}" -t 100 + meson test -v -C "${BUILD_DIR}" -t 100 || die "tests failed" } multilib_src_install() {