summaryrefslogtreecommitdiff
path: root/guix
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2012-12-29 21:03:23 +0100
committerLudovic Courtès <ludo@gnu.org>2012-12-30 22:37:28 +0100
commit6253961de2628ed9e65987c823935d669c0e20fc (patch)
treec030f30dc661f20432044a62e4981d2afaf7459b /guix
parent380d5decfcd3a25c11dfa7e78e2197af98a35307 (diff)
downloadguix-patches-6253961de2628ed9e65987c823935d669c0e20fc.tar
guix-patches-6253961de2628ed9e65987c823935d669c0e20fc.tar.gz
build-system/gnu: enable test-target during the check phase
* guix/build-system/gnu.scm: add variable test-target
Diffstat (limited to 'guix')
-rw-r--r--guix/build-system/gnu.scm2
1 files changed, 2 insertions, 0 deletions
diff --git a/guix/build-system/gnu.scm b/guix/build-system/gnu.scm
index 9d94680d93..53fc4749f0 100644
--- a/guix/build-system/gnu.scm
+++ b/guix/build-system/gnu.scm
@@ -152,6 +152,7 @@ System: GCC, GNU Make, Bash, Coreutils, etc."
(out-of-source? #f)
(path-exclusions ''())
(tests? #t)
+ (test-target "check")
(parallel-build? #t) (parallel-tests? #t)
(patch-shebangs? #t)
(strip-binaries? #t)
@@ -193,6 +194,7 @@ which could lead to gratuitous input divergence."
#:out-of-source? ,out-of-source?
#:path-exclusions ,path-exclusions
#:tests? ,tests?
+ #:test-target ,test-target
#:parallel-build? ,parallel-build?
#:parallel-tests? ,parallel-tests?
#:patch-shebangs? ,patch-shebangs?