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 9C52F138330 for ; Thu, 15 Sep 2016 21:15:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F3329E083C; Thu, 15 Sep 2016 21:15:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 12DCAE083C for ; Thu, 15 Sep 2016 21:15:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 54B1F340B35 for ; Thu, 15 Sep 2016 21:15:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 120CB2479 for ; Thu, 15 Sep 2016 21:15:29 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1473974126.7180b540c8cdb205670bc3e3c6584fbfb35b3ca3.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/compiler-rt/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/compiler-rt/compiler-rt-9999.ebuild X-VCS-Directories: sys-libs/compiler-rt/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 7180b540c8cdb205670bc3e3c6584fbfb35b3ca3 X-VCS-Branch: master Date: Thu, 15 Sep 2016 21:15:29 +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: f501ec4c-373f-45a4-a60c-6e537d735dc0 X-Archives-Hash: a6ce1d3c9cebd02d3e4a5d7db08f1ae1 commit: 7180b540c8cdb205670bc3e3c6584fbfb35b3ca3 Author: Michał Górny gentoo org> AuthorDate: Thu Sep 15 21:14:47 2016 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Sep 15 21:15:26 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7180b540 sys-libs/compiler-rt: Fix sandbox disabling to work-around LD_PRELOAD sys-libs/compiler-rt/compiler-rt-9999.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys-libs/compiler-rt/compiler-rt-9999.ebuild b/sys-libs/compiler-rt/compiler-rt-9999.ebuild index bc28ce4..829757c 100644 --- a/sys-libs/compiler-rt/compiler-rt-9999.ebuild +++ b/sys-libs/compiler-rt/compiler-rt-9999.ebuild @@ -92,8 +92,9 @@ src_configure() { } src_test() { - # sandbox fiddles with memory error reporting and breaks tests - local -x SANDBOX_ON=0 + # sandbox breaks libasan tests... and is hard to kill + # so abuse the fail in its algorithms + local -x LD_PRELOAD=${LD_PRELOAD/libsandbox/nolibsandbox} cmake-utils_src_make check-all }