diff options
author | Sam James <sam@gentoo.org> | 2024-02-06 06:30:01 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-02-06 06:30:48 +0000 |
commit | 0c24f80c20dc65207e9439343f848dbf1bcfd8a7 (patch) | |
tree | 4e06dc43f1e82902a4e94fb4009392edc0c47fd4 /dev-db | |
parent | dev-libs/popt: Stabilize 1.19-r1 x86, #923865 (diff) | |
download | gentoo-0c24f80c20dc65207e9439343f848dbf1bcfd8a7.tar.gz gentoo-0c24f80c20dc65207e9439343f848dbf1bcfd8a7.tar.bz2 gentoo-0c24f80c20dc65207e9439343f848dbf1bcfd8a7.zip |
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 <sam@gentoo.org>
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/sqlite/sqlite-3.45.1-r1.ebuild | 7 | ||||
-rw-r--r-- | 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 |