guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: grub: Disable a flaky test.


From: Leo Famulari
Subject: 02/02: gnu: grub: Disable a flaky test.
Date: Sun, 25 Jun 2017 09:47:33 -0400 (EDT)

lfam pushed a commit to branch master
in repository guix.

commit 23a53a95f1f5f44df401c120276eebf196ba15d2
Author: Leo Famulari <address@hidden>
Date:   Sat Jun 24 13:17:37 2017 -0400

    gnu: grub: Disable a flaky test.
    
    * gnu/packages/bootloaders.scm (grub)[arguments]: Add 'disable-flaky-test' 
phase
    and run the tests in parallel.
---
 gnu/packages/bootloaders.scm | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm
index dec462b..9ae6175 100644
--- a/gnu/packages/bootloaders.scm
+++ b/gnu/packages/bootloaders.scm
@@ -91,11 +91,15 @@
                      ;; Make the font visible.
                      (copy-file (assoc-ref inputs "unifont") "unifont.bdf.gz")
                      (system* "gunzip" "unifont.bdf.gz")
-                     #t)))
-
-       ;; We suspect there are race conditions when running tests in parallel:
-       ;; <https://bugs.gnu.org/26936>.
-       #:parallel-tests? #f))
+                     #t))
+                  (add-before 'check 'disable-flaky-test
+                    (lambda _
+                      ;; This test is unreliable. For more information, see:
+                      ;; <https://bugs.gnu.org/26936>.
+                      (substitute* "Makefile.in"
+                        (("grub_cmd_date grub_cmd_set_date grub_cmd_sleep")
+                          "grub_cmd_date grub_cmd_sleep"))
+                      #t)))))
     (inputs
      `(("gettext" ,gettext-minimal)
 



reply via email to

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