mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 22:26:40 -05:00
gnu: cmake-minimal: Skip tests on the Hurd.
* gnu/packages/cmake.scm (cmake-minimal)[arguments]: When building natively on the Hurd, add %common-disabled-tests/hurd to skipped tests in phase 'check'.
This commit is contained in:
parent
07eff96a86
commit
6f15b4204f
1 changed files with 4 additions and 1 deletions
|
@ -324,7 +324,10 @@ (define preserved-files ',%preserved-third-party-files)
|
|||
(lambda* (#:key tests? parallel-tests? #:allow-other-keys)
|
||||
(let ((skipped-tests (list #$@%common-disabled-tests
|
||||
;; This test requires the bundled libuv.
|
||||
"BootstrapTest")))
|
||||
"BootstrapTest"
|
||||
#$@(if (system-hurd?)
|
||||
%common-disabled-tests/hurd
|
||||
#~()))))
|
||||
(if tests?
|
||||
(begin
|
||||
(invoke "ctest" "-j" (if parallel-tests?
|
||||
|
|
Loading…
Reference in a new issue