mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 16:06:16 -05:00
gnu: upower: Fix test failure on i686-linux.
* gnu/packages/gnome.scm (upower)[arguments]: Add 'adjust-test-for-excess-precision' when 'target-x86-32?' returns true.
This commit is contained in:
parent
e49255ff18
commit
4b2b8b31d7
1 changed files with 13 additions and 1 deletions
|
@ -5819,7 +5819,19 @@ (define-public upower
|
||||||
;; If not specified, udev will try putting history information
|
;; If not specified, udev will try putting history information
|
||||||
;; in /gnu/store.
|
;; in /gnu/store.
|
||||||
"-Dhistorydir=/var/lib/upower"
|
"-Dhistorydir=/var/lib/upower"
|
||||||
(string-append "-Dudevrulesdir=" #$output "/bin/udev/rules.d"))))
|
(string-append "-Dudevrulesdir=" #$output "/bin/udev/rules.d"))
|
||||||
|
#:phases (if (target-x86-32?)
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'adjust-test-for-excess-precision
|
||||||
|
(lambda _
|
||||||
|
;; Address test failure caused by excess precision
|
||||||
|
;; on i686:
|
||||||
|
;; <https://gitlab.freedesktop.org/upower/upower/-/issues/214>.
|
||||||
|
(substitute* "src/linux/integration-test.py"
|
||||||
|
(("assertEqual(.*)40\\.0" _ middle)
|
||||||
|
(string-append
|
||||||
|
"assertAlmostEqual" middle "40.0"))))))
|
||||||
|
#~%standard-phases)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list `(,glib "bin") ; for gdbus-codegen
|
(list `(,glib "bin") ; for gdbus-codegen
|
||||||
gobject-introspection
|
gobject-introspection
|
||||||
|
|
Loading…
Reference in a new issue