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 D54F1138350 for ; Fri, 17 Jan 2020 18:35:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DFA56E0858; Fri, 17 Jan 2020 18:35:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 C1A50E0858 for ; Fri, 17 Jan 2020 18:35:55 +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 A871934DFAE for ; Fri, 17 Jan 2020 18:35:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0A9413E for ; Fri, 17 Jan 2020 18:35:53 +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: <1579286148.5bb01f3cb5bc7ad6c49d0e02d4063098f095c81a.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.0.ebuild X-VCS-Directories: dev-python/pypy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5bb01f3cb5bc7ad6c49d0e02d4063098f095c81a X-VCS-Branch: master Date: Fri, 17 Jan 2020 18:35:53 +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: 9b0f439b-36d4-4991-90ef-a4ae7ed7449f X-Archives-Hash: 0195d76fd04de9d0681b8062ff07b3e8 commit: 5bb01f3cb5bc7ad6c49d0e02d4063098f095c81a Author: Michał Górny gentoo org> AuthorDate: Fri Jan 17 14:55:07 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jan 17 18:35:48 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bb01f3c dev-python/pypy: Skip broken tests Signed-off-by: Michał Górny gentoo.org> dev-python/pypy/pypy-7.3.0.ebuild | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/dev-python/pypy/pypy-7.3.0.ebuild b/dev-python/pypy/pypy-7.3.0.ebuild index 23373c0fbe6..255575b2dbe 100644 --- a/dev-python/pypy/pypy-7.3.0.ebuild +++ b/dev-python/pypy/pypy-7.3.0.ebuild @@ -52,6 +52,23 @@ src_prepare() { eapply -p2 "${WORKDIR}/${PATCHSET}"/0010-use_pyxml.patch popd > /dev/null || die + # 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 (?) + 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 }