From 4b2b8b31d702154334bccbd4fc61adfb5c91c83e Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Fri, 7 Oct 2022 22:27:29 +0200 Subject: 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. --- gnu/packages/gnome.scm | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'gnu/packages/gnome.scm') diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 23ede13958..6f44bd6a39 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -5819,7 +5819,19 @@ (define-public upower ;; If not specified, udev will try putting history information ;; in /gnu/store. "-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: + ;; . + (substitute* "src/linux/integration-test.py" + (("assertEqual(.*)40\\.0" _ middle) + (string-append + "assertAlmostEqual" middle "40.0")))))) + #~%standard-phases))) (native-inputs (list `(,glib "bin") ; for gdbus-codegen gobject-introspection -- cgit v1.2.3