Skip to content
Snippets Groups Projects
Unverified Commit caa464ff authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

gnu: grub: Run tests sequentially.

Reported by Maxim Cournoyer <maxim.cournoyer@gmail.com>
at <http://bugs.gnu.org/26936>.

* gnu/packages/bootloaders.scm (grub)[arguments]: Add #:parallel-tests?.
parent 3416bed2
No related branches found
No related tags found
No related merge requests found
...@@ -91,7 +91,11 @@ (define-public grub ...@@ -91,7 +91,11 @@ (define-public grub
;; Make the font visible. ;; Make the font visible.
(copy-file (assoc-ref inputs "unifont") "unifont.bdf.gz") (copy-file (assoc-ref inputs "unifont") "unifont.bdf.gz")
(system* "gunzip" "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 (inputs
`(("gettext" ,gettext-minimal) `(("gettext" ,gettext-minimal)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment