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 @@ and workspaces that can be used in the compiler environment of your choice.")
|
||||||
(lambda* (#:key tests? parallel-tests? #:allow-other-keys)
|
(lambda* (#:key tests? parallel-tests? #:allow-other-keys)
|
||||||
(let ((skipped-tests (list #$@%common-disabled-tests
|
(let ((skipped-tests (list #$@%common-disabled-tests
|
||||||
;; This test requires the bundled libuv.
|
;; This test requires the bundled libuv.
|
||||||
"BootstrapTest")))
|
"BootstrapTest"
|
||||||
|
#$@(if (system-hurd?)
|
||||||
|
%common-disabled-tests/hurd
|
||||||
|
#~()))))
|
||||||
(if tests?
|
(if tests?
|
||||||
(begin
|
(begin
|
||||||
(invoke "ctest" "-j" (if parallel-tests?
|
(invoke "ctest" "-j" (if parallel-tests?
|
||||||
|
|
Reference in a new issue