~ruther/guix-local

c3c7eb41943b9dc4820349386f104eddf97e589d — Ludovic Courtès 13 years ago d9dbab1
build-system/gnu: Add `tests?' parameter.

* guix/build-system/gnu.scm (gnu-build): Add `tests?' parameter.
  [builder]: Inherit it.
1 files changed, 2 insertions(+), 0 deletions(-)

M guix/build-system/gnu.scm
M guix/build-system/gnu.scm => guix/build-system/gnu.scm +2 -0
@@ 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?)))