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/pypy3/
Date: Wed, 01 Aug 2018 12:24:31
Message-Id: 1533126254.6d8908533b9be01de026a18cdb5d25e5ca0e6279.mgorny@gentoo
1 commit: 6d8908533b9be01de026a18cdb5d25e5ca0e6279
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 1 12:22:56 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 1 12:24:14 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d890853
7
8 dev-python/pypy3: Fix reenabling byte-compilation for tests
9
10 dev-python/pypy3/pypy3-6.0.0.ebuild | 4 ++--
11 dev-python/pypy3/pypy3-9999.ebuild | 4 ++--
12 2 files changed, 4 insertions(+), 4 deletions(-)
13
14 diff --git a/dev-python/pypy3/pypy3-6.0.0.ebuild b/dev-python/pypy3/pypy3-6.0.0.ebuild
15 index 71af571b476..d32be15922b 100644
16 --- a/dev-python/pypy3/pypy3-6.0.0.ebuild
17 +++ b/dev-python/pypy3/pypy3-6.0.0.ebuild
18 @@ -193,11 +193,11 @@ src_compile() {
19
20 src_test() {
21 # (unset)
22 - local -x PYTHONDONTWRITEBYTECODE
23 + local -x PYTHONDONTWRITEBYTECODE=
24
25 # Test runner requires Python 2 too. However, it spawns PyPy3
26 # internally so that we end up testing the correct interpreter.
27 - "${PYTHON}" ./pypy/test_all.py --pypy=./pypy3-c lib-python || die
28 + "${PYTHON}" ./pypy/test_all.py --pypy=./pypy3-c -vv lib-python || die
29 }
30
31 src_install() {
32
33 diff --git a/dev-python/pypy3/pypy3-9999.ebuild b/dev-python/pypy3/pypy3-9999.ebuild
34 index 61b32ea2ad5..9aabe19e3d3 100644
35 --- a/dev-python/pypy3/pypy3-9999.ebuild
36 +++ b/dev-python/pypy3/pypy3-9999.ebuild
37 @@ -220,11 +220,11 @@ src_compile() {
38
39 src_test() {
40 # (unset)
41 - local -x PYTHONDONTWRITEBYTECODE
42 + local -x PYTHONDONTWRITEBYTECODE=
43
44 # Test runner requires Python 2 too. However, it spawns PyPy3
45 # internally so that we end up testing the correct interpreter.
46 - "${PYTHON}" ./pypy/test_all.py --pypy=./pypy3-c lib-python || die
47 + "${PYTHON}" ./pypy/test_all.py --pypy=./pypy3-c -vv lib-python || die
48 }
49
50 src_install() {