gnu: u-boot-tools: Only run full test suite on x86_64.

* gnu/packages/bootloaders (u-boot-tools)[arguments]<#:phases>[check]:
Modify phase.
[check-x86]: New phase.
[patch]: New phase.
master
Vagrant Cascadian 2019-04-28 20:55:39 -07:00 committed by Danny Milosavljevic
parent 9b241d4ce2
commit 6f5be83cd7
No known key found for this signature in database
GPG Key ID: E71A35542C30BAA5
1 changed files with 17 additions and 6 deletions

View File

@ -445,6 +445,10 @@ also initializes the boards (RAM etc).")
(("def test_ctrl_c") (("def test_ctrl_c")
"@pytest.mark.skip(reason='Guix has problems with SIGINT') "@pytest.mark.skip(reason='Guix has problems with SIGINT')
def test_ctrl_c")) def test_ctrl_c"))
;; Test against the tools being installed rather than tools built
;; for "sandbox" target.
(substitute* "test/image/test-imagetools.sh"
(("BASEDIR=sandbox") "BASEDIR=."))
(for-each (lambda (file) (for-each (lambda (file)
(substitute* file (substitute* file
;; Disable signatures, due to GPL/Openssl ;; Disable signatures, due to GPL/Openssl
@ -487,12 +491,19 @@ def test_ctrl_c"))
(delete 'check) (delete 'check)
(add-after 'install 'check (add-after 'install 'check
(lambda* (#:key make-flags test-target #:allow-other-keys) (lambda* (#:key make-flags test-target #:allow-other-keys)
(apply invoke "make" "mrproper" make-flags) (invoke "test/image/test-imagetools.sh")))
(setenv "SDL_VIDEODRIVER" "dummy") ;; Only run full test suite on x86_64 systems, as many tests
(setenv "PAGER" "cat") ;; assume x86_64.
(apply invoke "make" test-target make-flags) ,@(if (string-match "^x86_64-linux"
(symlink "build-sandbox_spl" "sandbox") (or (%current-target-system)
(invoke "test/image/test-imagetools.sh")))))) (%current-system)))
'((add-after 'check 'check-x86
(lambda* (#:key make-flags test-target #:allow-other-keys)
(apply invoke "make" "mrproper" make-flags)
(setenv "SDL_VIDEODRIVER" "dummy")
(setenv "PAGER" "cat")
(apply invoke "make" test-target make-flags))))
'()))))
(description "U-Boot is a bootloader used mostly for ARM boards. It (description "U-Boot is a bootloader used mostly for ARM boards. It
also initializes the boards (RAM etc). This package provides its also initializes the boards (RAM etc). This package provides its
board-independent tools."))) board-independent tools.")))