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
@ -324,7 +324,10 @@ and workspaces that can be used in the compiler environment of your choice.")
|
||||
(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 New Issue
Block a user