gnu: glib: Avoid timer.c test failure on i686-linux.

* gnu/packages/glib.scm (glib)[arguments]: In 'disable-failing-tests'
phase, modify "glib/tests/timer.c" on i[56]86 to address test failure.
This commit is contained in:
Ludovic Courtès 2021-09-15 22:10:06 +02:00
parent 988eb0d512
commit 35848d2c2e
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -231,6 +231,18 @@ (define glib
(substitute* '("contenttype.c" "gdbus-address-get-session.c"
"gdbus-peer.c" "appinfo.c" "desktop-app-info.c")
(("[ \t]*g_test_add_func.*;") "")))
,@(if (let ((system (or (%current-target-system)
(%current-system))))
(or (string-prefix? "i686-" system)
(string-prefix? "i586-" system)))
;; Add the 'volatile' qualifier for doubles to avoid excess
;; precision, which leads to test failures:
;; <https://gitlab.gnome.org/GNOME/glib/-/issues/820>.
'((substitute* "glib/tests/timer.c"
(("gdouble elapsed")
"volatile gdouble elapsed")))
'())
#t))
;; Python references are not being patched in patch-phase of build,
;; despite using python-wrapper as input. So we patch them manually.