mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
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?.
This commit is contained in:
parent
3416bed277
commit
caa464ff44
1 changed files with 5 additions and 1 deletions
|
@ -91,7 +91,11 @@ (define-public grub
|
|||
;; 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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue