diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-07-07 18:12:20 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-07-07 18:12:20 +0200 |
commit | c3c7eb41943b9dc4820349386f104eddf97e589d (patch) | |
tree | 4b32222dea85e86bdb50634504d0056d7bfd5d35 | |
parent | d9dbab18e2f5e1854f663bfe760765c29c11cbd9 (diff) | |
download | guix-c3c7eb41943b9dc4820349386f104eddf97e589d.tar.gz guix-c3c7eb41943b9dc4820349386f104eddf97e589d.zip |
build-system/gnu: Add `tests?' parameter.
* guix/build-system/gnu.scm (gnu-build): Add `tests?' parameter.
[builder]: Inherit it.
-rw-r--r-- | guix/build-system/gnu.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/guix/build-system/gnu.scm b/guix/build-system/gnu.scm index 20b7fbe897..06eb5345d1 100644 --- a/guix/build-system/gnu.scm +++ b/guix/build-system/gnu.scm @@ -45,6 +45,7 @@ #:key (outputs '("out")) (configure-flags ''()) (make-flags ''()) (patches ''()) (patch-flags ''("--batch" "-p1")) + (tests? #t) (parallel-build? #t) (parallel-tests? #t) (phases '%standard-phases) (system (%current-system)) @@ -65,6 +66,7 @@ input derivation INPUTS, using the usual procedure of the GNU Build System." #:phases ,phases #:configure-flags ,configure-flags #:make-flags ,make-flags + #:tests? ,tests? #:parallel-build? ,parallel-build? #:parallel-tests? ,parallel-tests?))) |