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 1EA3B138334 for ; Wed, 1 Aug 2018 13:34:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C3CF2E0827; Wed, 1 Aug 2018 13:34:36 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 947FEE0827 for ; Wed, 1 Aug 2018 13:34:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 D84D2335CA5 for ; Wed, 1 Aug 2018 13:34:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A8980392 for ; Wed, 1 Aug 2018 13:34:32 +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: <1533130461.34ad2d0e9058bd186d3239d8d4401678ddde8642.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pypy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pypy/pypy-6.0.0.ebuild dev-python/pypy/pypy-9999.ebuild X-VCS-Directories: dev-python/pypy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 34ad2d0e9058bd186d3239d8d4401678ddde8642 X-VCS-Branch: master Date: Wed, 1 Aug 2018 13:34:32 +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: 9ee915f0-eb93-4b1a-ab35-40ed40932497 X-Archives-Hash: da3076afcc93896fd1db1107bc59aca4 commit: 34ad2d0e9058bd186d3239d8d4401678ddde8642 Author: Michał Górny gentoo org> AuthorDate: Wed Aug 1 13:33:10 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Aug 1 13:34:21 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34ad2d0e dev-python/pypy: Disable more problematic tests Bug: https://bugs.gentoo.org/654242 dev-python/pypy/pypy-6.0.0.ebuild | 13 ++++++++++++- dev-python/pypy/pypy-9999.ebuild | 13 ++++++++++++- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/dev-python/pypy/pypy-6.0.0.ebuild b/dev-python/pypy/pypy-6.0.0.ebuild index 63c1511a472..3f036775348 100644 --- a/dev-python/pypy/pypy-6.0.0.ebuild +++ b/dev-python/pypy/pypy-6.0.0.ebuild @@ -228,7 +228,18 @@ src_test() { # (unset) local -x PYTHONDONTWRITEBYTECODE= - ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -vv lib-python || die + local ignored_tests=( + # network + --ignore=lib-python/2.7/test/test_urllibnet.py + --ignore=lib-python/2.7/test/test_urllib2net.py + # lots of free space + --ignore=lib-python/2.7/test/test_zipfile64.py + # no module named 'worker' -- a lot + --ignore=lib-python/2.7/test/test_xpickle.py + ) + + ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -vv \ + "${ignored_tests[@]}" lib-python || die } src_install() { diff --git a/dev-python/pypy/pypy-9999.ebuild b/dev-python/pypy/pypy-9999.ebuild index d3d73e720f2..11f050a7d0a 100644 --- a/dev-python/pypy/pypy-9999.ebuild +++ b/dev-python/pypy/pypy-9999.ebuild @@ -234,7 +234,18 @@ src_test() { # (unset) local -x PYTHONDONTWRITEBYTECODE= - ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -vv lib-python || die + local ignored_tests=( + # network + --ignore=lib-python/2.7/test/test_urllibnet.py + --ignore=lib-python/2.7/test/test_urllib2net.py + # lots of free space + --ignore=lib-python/2.7/test/test_zipfile64.py + # no module named 'worker' -- a lot + --ignore=lib-python/2.7/test/test_xpickle.py + ) + + ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -vv \ + "${ignored_tests[@]}" lib-python || die } src_install() {