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 @@ faster results and to avoid unnecessary server load.")
 | 
			
		|||
              ;; 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:
 | 
			
		||||
                           ;; <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
 | 
			
		||||
     (list `(,glib "bin")               ; for gdbus-codegen
 | 
			
		||||
           gobject-introspection
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Reference in a new issue