From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (unknown [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 6AAD91381FA for ; Sat, 10 May 2014 09:10:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DE08DE09AF; Sat, 10 May 2014 09:10:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5BA31E09A9 for ; Sat, 10 May 2014 09:10:20 +0000 (UTC) Received: from spoonbill.gentoo.org (unknown [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4BCA533FD72 for ; Sat, 10 May 2014 09:10:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id D03091818D for ; Sat, 10 May 2014 09:10:17 +0000 (UTC) From: "Nikoli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nikoli" Message-ID: <1399712827.4a6f2dd063e438eaa9f3c2594ba9d5893f4b6980.nikoli@gentoo> Subject: [gentoo-commits] proj/x11:master commit in: media-libs/mesa/ X-VCS-Repository: proj/x11 X-VCS-Files: media-libs/mesa/mesa-9999.ebuild X-VCS-Directories: media-libs/mesa/ X-VCS-Committer: nikoli X-VCS-Committer-Name: Nikoli X-VCS-Revision: 4a6f2dd063e438eaa9f3c2594ba9d5893f4b6980 X-VCS-Branch: master Date: Sat, 10 May 2014 09:10:17 +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-Archives-Salt: cd83753d-e7c8-4b0c-a6c2-cace02a0b716 X-Archives-Hash: 4b67d0736e5bfe5144b80ad91f4b0a85 commit: 4a6f2dd063e438eaa9f3c2594ba9d5893f4b6980 Author: Nikoli gmx us> AuthorDate: Sat May 10 09:07:07 2014 +0000 Commit: Nikoli lavabit com> CommitDate: Sat May 10 09:07:07 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=4a6f2dd0 media-libs/mesa: fix runnings tests in hardened Package-Manager: portage-2.2.8-r1 --- media-libs/mesa/mesa-9999.ebuild | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/media-libs/mesa/mesa-9999.ebuild b/media-libs/mesa/mesa-9999.ebuild index 79f3c4e..835d0f8 100644 --- a/media-libs/mesa/mesa-9999.ebuild +++ b/media-libs/mesa/mesa-9999.ebuild @@ -14,7 +14,7 @@ fi PYTHON_COMPAT=( python{2_6,2_7} ) inherit base autotools multilib multilib-minimal flag-o-matic \ - python-any-r1 toolchain-funcs ${GIT_ECLASS} + python-any-r1 toolchain-funcs pax-utils ${GIT_ECLASS} OPENGL_DIR="xorg-x11" @@ -413,6 +413,13 @@ multilib_src_install_all() { } multilib_src_test() { + if use llvm; then + local llvm_tests='lp_test_arit lp_test_arit lp_test_blend lp_test_blend lp_test_conv lp_test_conv lp_test_format lp_test_format lp_test_printf lp_test_printf' + pushd src/gallium/drivers/llvmpipe >/dev/null || die + emake ${llvm_tests} + pax-mark m ${llvm_tests} + popd >/dev/null || die + fi emake check }