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/
Date: Wed, 01 Aug 2018 12:24:31
Message-Id: 1533126253.f10fe39888c3da22680e76269572b044fe3f02f5.mgorny@gentoo
1 commit: f10fe39888c3da22680e76269572b044fe3f02f5
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 1 12:19:26 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=f10fe398
7
8 dev-python/pypy: Fix reenabling byte-compilation for tests
9
10 Bug: https://bugs.gentoo.org/654242
11
12 dev-python/pypy/pypy-6.0.0.ebuild | 4 ++--
13 dev-python/pypy/pypy-9999.ebuild | 4 ++--
14 2 files changed, 4 insertions(+), 4 deletions(-)
15
16 diff --git a/dev-python/pypy/pypy-6.0.0.ebuild b/dev-python/pypy/pypy-6.0.0.ebuild
17 index 286b7be69e1..63c1511a472 100644
18 --- a/dev-python/pypy/pypy-6.0.0.ebuild
19 +++ b/dev-python/pypy/pypy-6.0.0.ebuild
20 @@ -226,9 +226,9 @@ src_compile() {
21
22 src_test() {
23 # (unset)
24 - local -x PYTHONDONTWRITEBYTECODE
25 + local -x PYTHONDONTWRITEBYTECODE=
26
27 - ./pypy-c ./pypy/test_all.py --pypy=./pypy-c lib-python || die
28 + ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -vv lib-python || die
29 }
30
31 src_install() {
32
33 diff --git a/dev-python/pypy/pypy-9999.ebuild b/dev-python/pypy/pypy-9999.ebuild
34 index c0bc0a26454..d3d73e720f2 100644
35 --- a/dev-python/pypy/pypy-9999.ebuild
36 +++ b/dev-python/pypy/pypy-9999.ebuild
37 @@ -232,9 +232,9 @@ src_compile() {
38
39 src_test() {
40 # (unset)
41 - local -x PYTHONDONTWRITEBYTECODE
42 + local -x PYTHONDONTWRITEBYTECODE=
43
44 - ./pypy-c ./pypy/test_all.py --pypy=./pypy-c lib-python || die
45 + ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -vv lib-python || die
46 }
47
48 src_install() {