gnu: MariaDB: Disable failing test on i686-linux.

* gnu/packages/databases.scm (mariadb)[arguments]: When building on
i686-linux, disable one test.
This commit is contained in:
Marius Bakke 2020-12-21 23:35:03 +01:00
parent 704b7861df
commit 166472e2c8
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA

View File

@ -1030,6 +1030,12 @@ Language.")
;; substitutable because several encodings are tested.
"main.sp2"
;; XXX: This test occasionally fails on i686-linux:
;; <https://jira.mariadb.org/browse/MDEV-24458>
,@(if (string-prefix? "i686" (%current-system))
'("main.myisampack")
'())
;; This file contains a time bomb which makes it fail after
;; 2030-12-31. See <https://bugs.gnu.org/34351> for details.
"main.mysqldump"))