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 4C6BC138334 for ; Wed, 1 Aug 2018 12:24:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EA1C7E0863; Wed, 1 Aug 2018 12:24:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AE245E0863 for ; Wed, 1 Aug 2018 12:24:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 27D2E335C36 for ; Wed, 1 Aug 2018 12:24:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 74F89392 for ; Wed, 1 Aug 2018 12:24:25 +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: <1533126254.bd1831cfd54023607701a2d62a181a357eda3b40.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pypy3-bin/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pypy3-bin/pypy3-bin-6.0.0.ebuild X-VCS-Directories: dev-python/pypy3-bin/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: bd1831cfd54023607701a2d62a181a357eda3b40 X-VCS-Branch: master Date: Wed, 1 Aug 2018 12:24:25 +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: d63f4ae1-9f17-477d-809d-8c660f85df55 X-Archives-Hash: 01c161829315a8194ffc95f0c17309ec commit: bd1831cfd54023607701a2d62a181a357eda3b40 Author: Michał Górny gentoo org> AuthorDate: Wed Aug 1 12:22:41 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Aug 1 12:24:14 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd1831cf dev-python/pypy3-bin: Fix reenabling byte-compilation for tests dev-python/pypy3-bin/pypy3-bin-6.0.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/pypy3-bin/pypy3-bin-6.0.0.ebuild b/dev-python/pypy3-bin/pypy3-bin-6.0.0.ebuild index 89c4fd6f16a..262971abd21 100644 --- a/dev-python/pypy3-bin/pypy3-bin-6.0.0.ebuild +++ b/dev-python/pypy3-bin/pypy3-bin-6.0.0.ebuild @@ -131,11 +131,11 @@ src_compile() { src_test() { # (unset) - local -x PYTHONDONTWRITEBYTECODE + local -x PYTHONDONTWRITEBYTECODE= # Test runner requires Python 2 too. However, it spawns PyPy3 # internally so that we end up testing the correct interpreter. - "${PYTHON}" ./pypy/test_all.py --pypy=./pypy3-c lib-python || die + "${PYTHON}" ./pypy/test_all.py --pypy=./pypy3-c -vv lib-python || die } src_install() {