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 8EB3C15815E for ; Tue, 6 Feb 2024 06:31:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C6146E2A2E; Tue, 6 Feb 2024 06:31:43 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A9E5BE2A2E for ; Tue, 6 Feb 2024 06:31:43 +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 D474A343004 for ; Tue, 6 Feb 2024 06:31:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3FD28105D for ; Tue, 6 Feb 2024 06:31:41 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1707201048.0c24f80c20dc65207e9439343f848dbf1bcfd8a7.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/sqlite/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/sqlite/sqlite-3.45.1-r1.ebuild dev-db/sqlite/sqlite-9999.ebuild X-VCS-Directories: dev-db/sqlite/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0c24f80c20dc65207e9439343f848dbf1bcfd8a7 X-VCS-Branch: master Date: Tue, 6 Feb 2024 06:31:41 +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: 0c7fd11a-e293-41fc-bb1d-943f5b803a16 X-Archives-Hash: 6a2ff3f170e298bc375b767300a8c295 commit: 0c24f80c20dc65207e9439343f848dbf1bcfd8a7 Author: Sam James gentoo org> AuthorDate: Tue Feb 6 06:30:01 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Feb 6 06:30:48 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c24f80c dev-db/sqlite: skip another test for x86 Our upstream reports for these haven't gone far and Fedora are skipping this one too. Skip and quote Fedora's rationale in addition to the existing upstream references. Signed-off-by: Sam James gentoo.org> dev-db/sqlite/sqlite-3.45.1-r1.ebuild | 7 ++++++- dev-db/sqlite/sqlite-9999.ebuild | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/dev-db/sqlite/sqlite-3.45.1-r1.ebuild b/dev-db/sqlite/sqlite-3.45.1-r1.ebuild index 8ff12ceb6f51..ad62f71390b1 100644 --- a/dev-db/sqlite/sqlite-3.45.1-r1.ebuild +++ b/dev-db/sqlite/sqlite-3.45.1-r1.ebuild @@ -322,8 +322,13 @@ multilib_src_configure() { # Skip known-broken test for now # https://sqlite.org/forum/forumpost/d97caf168f # https://sqlite.org/forum/forumpost/50f136d91d + # Quoting Fedora's spec: + # "The atof test is failing on the i686 architecture, when binary configured with + # --enable-rtree option. Failing part is text->real conversion and + # text->real->text conversion in lower significant values after decimal point in a number. + # func4 tests fail for i686 on float<->int conversions." if use test ; then - rm test/atof1.test || die + rm test/atof1.test test/func4.test || die fi fi diff --git a/dev-db/sqlite/sqlite-9999.ebuild b/dev-db/sqlite/sqlite-9999.ebuild index e529a0d8187d..40b16d903620 100644 --- a/dev-db/sqlite/sqlite-9999.ebuild +++ b/dev-db/sqlite/sqlite-9999.ebuild @@ -318,8 +318,13 @@ multilib_src_configure() { # Skip known-broken test for now # https://sqlite.org/forum/forumpost/d97caf168f # https://sqlite.org/forum/forumpost/50f136d91d + # Quoting Fedora's spec: + # "The atof test is failing on the i686 architecture, when binary configured with + # --enable-rtree option. Failing part is text->real conversion and + # text->real->text conversion in lower significant values after decimal point in a number. + # func4 tests fail for i686 on float<->int conversions." if use test ; then - rm test/atof1.test || die + rm test/atof1.test test/func4.test || die fi fi