guix-commits
[Top][All Lists]
Advanced

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

13/15: gnu: mercurial: Skip tests on powerpc-linux.


From: guix-commits
Subject: 13/15: gnu: mercurial: Skip tests on powerpc-linux.
Date: Sun, 17 May 2020 13:30:05 -0400 (EDT)

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

commit fc95b340b836d0b6d7114ce862548971a6325a79
Author: Efraim Flashner <address@hidden>
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 | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 6f985bf..6c675b9 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -6,7 +6,7 @@
 ;;; Copyright © 2015, 2016 Mathieu Lirzin <address@hidden>
 ;;; Copyright © 2014, 2015, 2016 Mark H Weaver <address@hidden>
 ;;; Copyright © 2014, 2016, 2019 Eric Bavier <address@hidden>
-;;; Copyright © 2015, 2016, 2017, 2018, 2019 Efraim Flashner <address@hidden>
+;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 Efraim Flashner 
<address@hidden>
 ;;; Copyright © 2015, 2018 Kyle Meyer <address@hidden>
 ;;; Copyright © 2015, 2017, 2018, 2020 Ricardo Wurmus <address@hidden>
 ;;; Copyright © 2016, 2017 Leo Famulari <address@hidden>
@@ -1501,7 +1501,11 @@ control to Git repositories.")
                          ;; 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)



reply via email to

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