gnu: python-lit: Honor the #:tests? flag.
* gnu/packages/check.scm (python-lit)[arguments]: Honor the #:tests? flag in the custom 'check phase.master
parent
970247e9f5
commit
1be53ad197
|
@ -2360,8 +2360,9 @@ programs, something like CSmith, a random generator of C programs.")
|
|||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda _
|
||||
(invoke "python" "lit.py" "tests"))))))
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "python" "lit.py" "tests")))))))
|
||||
(native-inputs
|
||||
(list llvm-14))
|
||||
(home-page "https://llvm.org/")
|
||||
|
|
Reference in New Issue