gnu: grub: Disable tests on ARM platforms.

* gnu/packages/bootloaders (grub): Disable tests on ARM platforms.
Half of the tests are failing on ARM.
master
Mathieu Othacehe 2017-11-28 10:25:00 +01:00
parent 1fd904fb38
commit 56f0feb678
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 5 additions and 2 deletions

View File

@ -75,7 +75,7 @@
"03vvdfhdmf16121v7xs8is2krwnv15wpkhkf16a4yf8nsfc3f2w1"))))
(build-system gnu-build-system)
(arguments
'(#:phases (modify-phases %standard-phases
`(#:phases (modify-phases %standard-phases
(add-after 'unpack 'patch-stuff
(lambda* (#:key inputs #:allow-other-keys)
(substitute* "grub-core/Makefile.in"
@ -102,7 +102,10 @@
(substitute* "Makefile.in"
(("grub_cmd_date grub_cmd_set_date grub_cmd_sleep")
"grub_cmd_date grub_cmd_sleep"))
#t)))))
#t)))
;; Disable tests on ARM platforms.
#:tests? ,(not (string-prefix? "arm" (or (%current-target-system)
(%current-system))))))
(inputs
`(("gettext" ,gettext-minimal)