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 6F892138334 for ; Wed, 1 Aug 2018 13:34:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8BFEEE081B; 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 63794E081B 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 7B1C6335C9B 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 93F4C390 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.bd8453f541b60d86b5a64c8dd0becf34c64c6e01.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pypy-bin/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pypy-bin/pypy-bin-6.0.0.ebuild X-VCS-Directories: dev-python/pypy-bin/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: bd8453f541b60d86b5a64c8dd0becf34c64c6e01 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: 6756f196-ccb7-4aac-a9fb-15e6b8b5513b X-Archives-Hash: b0e97f6e1491eabd132e7597718742e0 commit: bd8453f541b60d86b5a64c8dd0becf34c64c6e01 Author: Michał Górny gentoo org> AuthorDate: Wed Aug 1 13:32:47 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=bd8453f5 dev-python/pypy-bin: Disable more problematic tests Bug: https://bugs.gentoo.org/637208 dev-python/pypy-bin/pypy-bin-6.0.0.ebuild | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/dev-python/pypy-bin/pypy-bin-6.0.0.ebuild b/dev-python/pypy-bin/pypy-bin-6.0.0.ebuild index 312b592c270..2330fd7634d 100644 --- a/dev-python/pypy-bin/pypy-bin-6.0.0.ebuild +++ b/dev-python/pypy-bin/pypy-bin-6.0.0.ebuild @@ -150,7 +150,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() {