efraim pushed a commit to branch wip-ppc
in repository guix.
commit 91e4efe4b78afd3544f4e52073822b8a1c75252d
Author: Efraim Flashner <[email protected]>
AuthorDate: Fri May 8 10:32:28 2020 +0300
gnu: mercurial: Skip tests on powerpc-linux.
* gnu/packages/version-control.scm (mercurial)[arguments]: Skip tests on
powerpc-linux.
---
gnu/packages/version-control.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index fe61bc8..a1d8a25 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -1622,7 +1622,11 @@ execution of any hook written in any language before
every commit.")
;; The test suite takes a long time and produces
little
;; output by default. Prevent timeouts due to
silence.
"-v"))
- #t))))))
+ #t))))
+ ;; Tests on powerpc-linux take more than 10 hours.
+ #:tests? ,(if (string=? "powerpc-linux" (or (%current-system)
+ (%current-target-system)))
+ '#f '#t)))
;; The following inputs are only needed to run the tests.
(native-inputs
`(("python-nose" ,python-nose)