gnu: rinutils: Respect #:tests?
* gnu/packages/games.scm (rinutils)[arguments]: Respect #:tests? in 'check.
This commit is contained in:
parent
8646f1f7a5
commit
f7e6e93662
1 changed files with 10 additions and 9 deletions
|
@ -7530,7 +7530,8 @@ original.")
|
||||||
(strip-store-file-name
|
(strip-store-file-name
|
||||||
#$shlomif-cmake-modules)))))
|
#$shlomif-cmake-modules)))))
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(when tests?
|
||||||
(with-directory-excursion "../source"
|
(with-directory-excursion "../source"
|
||||||
(setenv "FCS_TEST_BUILD" "1")
|
(setenv "FCS_TEST_BUILD" "1")
|
||||||
(setenv "RINUTILS_TEST_BUILD" "1")
|
(setenv "RINUTILS_TEST_BUILD" "1")
|
||||||
|
@ -7538,7 +7539,7 @@ original.")
|
||||||
;; which requires tidy-all.
|
;; which requires tidy-all.
|
||||||
;; (setenv "RINUTILS_TEST_TIDY" "1")
|
;; (setenv "RINUTILS_TEST_TIDY" "1")
|
||||||
(invoke "perl"
|
(invoke "perl"
|
||||||
"CI-testing/continuous-integration-testing.pl")))))))
|
"CI-testing/continuous-integration-testing.pl"))))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list perl
|
(list perl
|
||||||
;; The following are needed only for tests.
|
;; The following are needed only for tests.
|
||||||
|
|
Reference in a new issue