guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

08/14: gnu: mercurial: Skip tests on powerpc-linux.


From: guix-commits
Subject: 08/14: gnu: mercurial: Skip tests on powerpc-linux.
Date: Mon, 15 Mar 2021 06:05:48 -0400 (EDT)

efraim pushed a commit to branch wip-ppc
in repository guix.

commit 7f6961ef1ab3e55042067ff0cbfb37a2192d7284
Author: Efraim Flashner <efraim@flashner.co.il>
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 9a1b794..01aacf9 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -1661,7 +1661,11 @@ execution of any hook written in any language before 
every commit.")
                          "--slowtimeout" "86400"
                          ;; The test suite takes a long time and produces 
little
                          ;; output by default.  Prevent timeouts due to 
silence.
-                         "-v"))))))))
+                         "-v"))))))
+       ;; 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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]