Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/compiler-rt/
Date: Thu, 01 Sep 2016 03:58:46
Message-Id: 1472702245.669cd609611201769423802ddb9642ec80fe49c3.mgorny@gentoo
1 commit: 669cd609611201769423802ddb9642ec80fe49c3
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 1 03:56:05 2016 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 1 03:57:25 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=669cd609
7
8 sys-libs/compiler-rt: Disable sandbox during the tests
9
10 sys-libs/compiler-rt/compiler-rt-9999.ebuild | 4 +++-
11 1 file changed, 3 insertions(+), 1 deletion(-)
12
13 diff --git a/sys-libs/compiler-rt/compiler-rt-9999.ebuild b/sys-libs/compiler-rt/compiler-rt-9999.ebuild
14 index 43363fe..599adcc 100644
15 --- a/sys-libs/compiler-rt/compiler-rt-9999.ebuild
16 +++ b/sys-libs/compiler-rt/compiler-rt-9999.ebuild
17 @@ -99,7 +99,9 @@ src_configure() {
18 }
19
20 src_test() {
21 - # TODO: tests are broken by sandbox
22 + # sandbox fiddles with memory error reporting and breaks tests
23 + local -x SANDBOX_ON=0
24 +
25 cmake-utils_src_make check-all
26 }