[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: glog: Disable test that fails on non-x86_64 platforms.
From: |
guix-commits |
Subject: |
01/01: gnu: glog: Disable test that fails on non-x86_64 platforms. |
Date: |
Fri, 19 Jul 2019 10:36:46 -0400 (EDT) |
mbakke pushed a commit to branch master
in repository guix.
commit dd9560a050ed99952046a2bbd99dc6b331100c63
Author: Marius Bakke <address@hidden>
Date: Fri Jul 19 16:33:54 2019 +0200
gnu: glog: Disable test that fails on non-x86_64 platforms.
This was removed in 4678cc46a4c1e0538402d8df6d85d3caedc7f00b, but turned out
to still be needed.
* gnu/packages/logging.scm (glog)[arguments]: New field.
---
gnu/packages/logging.scm | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/gnu/packages/logging.scm b/gnu/packages/logging.scm
index 4240463..1481f5b 100644
--- a/gnu/packages/logging.scm
+++ b/gnu/packages/logging.scm
@@ -75,6 +75,16 @@ staying as close to their API as is reasonable.")
"1xd3maiipfbxmhc9rrblc5x52nxvkwxp14npg31y5njqvkvzax9b"))
(file-name (git-file-name name version))))
(build-system gnu-build-system)
+ (arguments
+ `(#:phases (modify-phases %standard-phases
+ (add-before 'check 'disable-signal-tests
+ (lambda _
+ ;; XXX: This test fails on non x86_64. See e.g.
+ ;; https://github.com/google/glog/issues/219 and
+ ;; https://github.com/google/glog/issues/256.
+ (substitute* "Makefile"
+ (("\tsignalhandler_unittest_sh") "\t$(EMPTY)"))
+ #t)))))
(native-inputs
`(("perl" ,perl) ;for tests
("autoconf" ,autoconf-wrapper)