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 5403D138351 for ; Sun, 12 Apr 2020 17:47:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 89ADDE08F6; Sun, 12 Apr 2020 17:47:21 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 756A7E08F6 for ; Sun, 12 Apr 2020 17:47:21 +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 9D65634F0CD for ; Sun, 12 Apr 2020 17:47:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 454671CF for ; Sun, 12 Apr 2020 17:47:19 +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: <1586713634.4596ce6cdf671c7b30eec0e7f804f03ba2f5ce99.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-7.3.1.ebuild X-VCS-Directories: dev-python/pypy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4596ce6cdf671c7b30eec0e7f804f03ba2f5ce99 X-VCS-Branch: master Date: Sun, 12 Apr 2020 17:47:19 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b2b24484-591c-455c-b97a-862aa2166bc7 X-Archives-Hash: fcc6841d3f4cc0cb36d2ee83164d5a14 commit: 4596ce6cdf671c7b30eec0e7f804f03ba2f5ce99 Author: Michał Górny gentoo org> AuthorDate: Sun Apr 12 17:17:27 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Apr 12 17:47:14 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4596ce6c dev-python/pypy: Update test failure list Signed-off-by: Michał Górny gentoo.org> dev-python/pypy/pypy-7.3.1.ebuild | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/dev-python/pypy/pypy-7.3.1.ebuild b/dev-python/pypy/pypy-7.3.1.ebuild index e38b85a5caa..1f32cc41d4b 100644 --- a/dev-python/pypy/pypy-7.3.1.ebuild +++ b/dev-python/pypy/pypy-7.3.1.ebuild @@ -55,19 +55,14 @@ src_prepare() { # this test relies on pypy-c hardcoding correct build time paths sed -i -e 's:test_executable_without_cwd:_&:' \ lib-python/2.7/test/test_subprocess.py || die - # this one seems to rely on cpython gc handling (?) - sed -i -e 's:test_number_of_objects:_&:' \ - lib-python/2.7/test/test_multiprocessing.py || die - # hardcoded assumptions (?) + # broken upstream + # see http://buildbot.pypy.org/summary?branch=%3Ctrunk%3E sed -i -e 's:test_alpn_protocols:_&:' \ -e 's:test_default_ecdh_curve:_&:' \ lib-python/2.7/test/test_ssl.py || die # requires Internet sed -i -e '/class NetworkedTests/i@unittest.skip("Requires networking")' \ lib-python/2.7/test/test_ssl.py || die - # TODO: investigate (sandbox?) - sed -i -e 's:test__copy_to_each:_&:' \ - lib-python/2.7/test/test_pty.py || die eapply_user }