guix-commits
[Top][All Lists]
Advanced

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

04/05: gnu: mercurial: Skip tests on powerpc-linux.


From: guix-commits
Subject: 04/05: gnu: mercurial: Skip tests on powerpc-linux.
Date: Fri, 28 May 2021 06:52:04 -0400 (EDT)

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

commit a1c16fe055f79b3363f0b878e7ed3ef97ce108a4
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 | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 580f124..54c9495 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -1676,7 +1676,12 @@ 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-docutils", python-docutils)
        ;; The following inputs are only needed to run the tests.



reply via email to

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