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: dev-python/pypy-bin/
Date: Wed, 01 Aug 2018 12:24:30
Message-Id: 1533126253.23adb45b7927b2760cb129453087346ee486ef5c.mgorny@gentoo
1 commit: 23adb45b7927b2760cb129453087346ee486ef5c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 1 12:18:34 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 1 12:24:13 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23adb45b
7
8 dev-python/pypy-bin: Fix reenabling byte-compilation for tests
9
10 Bug: https://bugs.gentoo.org/637208
11
12 dev-python/pypy-bin/pypy-bin-6.0.0.ebuild | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/dev-python/pypy-bin/pypy-bin-6.0.0.ebuild b/dev-python/pypy-bin/pypy-bin-6.0.0.ebuild
16 index ef34c44ba08..312b592c270 100644
17 --- a/dev-python/pypy-bin/pypy-bin-6.0.0.ebuild
18 +++ b/dev-python/pypy-bin/pypy-bin-6.0.0.ebuild
19 @@ -148,9 +148,9 @@ src_compile() {
20
21 src_test() {
22 # (unset)
23 - local -x PYTHONDONTWRITEBYTECODE
24 + local -x PYTHONDONTWRITEBYTECODE=
25
26 - ./pypy-c ./pypy/test_all.py --pypy=./pypy-c lib-python || die
27 + ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -vv lib-python || die
28 }
29
30 src_install() {