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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D65D3158041 for ; Thu, 11 Apr 2024 20:57:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2A518E2A18; Thu, 11 Apr 2024 20:57:30 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0C9D5E2A18 for ; Thu, 11 Apr 2024 20:57:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 19BF73432F2 for ; Thu, 11 Apr 2024 20:57:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5434AB47 for ; Thu, 11 Apr 2024 20:57:27 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1712868906.7d56cd36ac6b6d468e20d6333ae2917c6c39c146.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/php/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/php/php-8.2.15.ebuild X-VCS-Directories: dev-lang/php/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 7d56cd36ac6b6d468e20d6333ae2917c6c39c146 X-VCS-Branch: master Date: Thu, 11 Apr 2024 20:57:27 +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: 5956a27e-fc35-46df-b82d-0776bb29d717 X-Archives-Hash: 460c1846acc3e5814cfe4a8c4ce07042 commit: 7d56cd36ac6b6d468e20d6333ae2917c6c39c146 Author: Michael Orlitzky gentoo org> AuthorDate: Thu Apr 11 19:50:37 2024 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Thu Apr 11 20:55:06 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d56cd36 dev-lang/php: skip doomed test in 8.2.15, too Bug: https://bugs.gentoo.org/927461 Signed-off-by: Michael Orlitzky gentoo.org> dev-lang/php/php-8.2.15.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-lang/php/php-8.2.15.ebuild b/dev-lang/php/php-8.2.15.ebuild index 38a2c837e671..f5ce99221a72 100644 --- a/dev-lang/php/php-8.2.15.ebuild +++ b/dev-lang/php/php-8.2.15.ebuild @@ -308,6 +308,12 @@ src_prepare() { # https://github.com/php/php-src/issues/12801 rm ext/pcre/tests/gh11374.phpt || die + + # This is a memory usage test with hard-coded limits. Whenever the + # limits are surpassed... they get increased... but in the meantime, + # the tests fail. This is not really a test that end users should + # be running pre-install, in my opinion. Bug 927461. + rm ext/fileinfo/tests/bug78987.phpt || die } src_configure() {