guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: grub: Run tests sequentially.


From: Ludovic Courtès
Subject: 01/01: gnu: grub: Run tests sequentially.
Date: Fri, 2 Jun 2017 18:55:11 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit caa464ff44eecf9dbff2d08742d135501c41cd09
Author: Ludovic Courtès <address@hidden>
Date:   Fri Jun 2 22:34:58 2017 +0200

    gnu: grub: Run tests sequentially.
    
    Reported by Maxim Cournoyer <address@hidden>
    at <http://bugs.gnu.org/26936>.
    
    * gnu/packages/bootloaders.scm (grub)[arguments]: Add #:parallel-tests?.
---
 gnu/packages/bootloaders.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm
index 4bea418..dec462b 100644
--- a/gnu/packages/bootloaders.scm
+++ b/gnu/packages/bootloaders.scm
@@ -91,7 +91,11 @@
                      ;; Make the font visible.
                      (copy-file (assoc-ref inputs "unifont") "unifont.bdf.gz")
                      (system* "gunzip" "unifont.bdf.gz")
-                     #t)))))
+                     #t)))
+
+       ;; We suspect there are race conditions when running tests in parallel:
+       ;; <https://bugs.gnu.org/26936>.
+       #:parallel-tests? #f))
     (inputs
      `(("gettext" ,gettext-minimal)
 



reply via email to

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