build-system/gnu: enable test-target during the check phase
* guix/build-system/gnu.scm: add variable test-target
This commit is contained in:
parent
380d5decfc
commit
6253961de2
|
@ -152,6 +152,7 @@ System: GCC, GNU Make, Bash, Coreutils, etc."
|
||||||
(out-of-source? #f)
|
(out-of-source? #f)
|
||||||
(path-exclusions ''())
|
(path-exclusions ''())
|
||||||
(tests? #t)
|
(tests? #t)
|
||||||
|
(test-target "check")
|
||||||
(parallel-build? #t) (parallel-tests? #t)
|
(parallel-build? #t) (parallel-tests? #t)
|
||||||
(patch-shebangs? #t)
|
(patch-shebangs? #t)
|
||||||
(strip-binaries? #t)
|
(strip-binaries? #t)
|
||||||
|
@ -193,6 +194,7 @@ which could lead to gratuitous input divergence."
|
||||||
#:out-of-source? ,out-of-source?
|
#:out-of-source? ,out-of-source?
|
||||||
#:path-exclusions ,path-exclusions
|
#:path-exclusions ,path-exclusions
|
||||||
#:tests? ,tests?
|
#:tests? ,tests?
|
||||||
|
#:test-target ,test-target
|
||||||
#:parallel-build? ,parallel-build?
|
#:parallel-build? ,parallel-build?
|
||||||
#:parallel-tests? ,parallel-tests?
|
#:parallel-tests? ,parallel-tests?
|
||||||
#:patch-shebangs? ,patch-shebangs?
|
#:patch-shebangs? ,patch-shebangs?
|
||||||
|
|
Loading…
Reference in New Issue