guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/09: build-system/cmake: Enable parallel tests by default.


From: guix-commits
Subject: 01/09: build-system/cmake: Enable parallel tests by default.
Date: Sun, 26 Jan 2020 07:46:11 -0500 (EST)

mbakke pushed a commit to branch core-updates
in repository guix.

commit 88b263465c4baabe1711ca2d1eeffe8527a93cc0
Author: Marius Bakke <address@hidden>
AuthorDate: Sun Jan 26 01:52:55 2020 +0100

    build-system/cmake: Enable parallel tests by default.
    
    * guix/build-system/cmake.scm (cmake-build, cmake-cross-build): Set
    the PARALLEL-TESTS? key to #t.
---
 guix/build-system/cmake.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/guix/build-system/cmake.scm b/guix/build-system/cmake.scm
index aa0f418..1fc0931 100644
--- a/guix/build-system/cmake.scm
+++ b/guix/build-system/cmake.scm
@@ -102,7 +102,7 @@
                       (build-type "RelWithDebInfo")
                       (tests? #t)
                       (test-target "test")
-                      (parallel-build? #t) (parallel-tests? #f)
+                      (parallel-build? #t) (parallel-tests? #t)
                       (validate-runpath? #t)
                       (patch-shebangs? #t)
                       (strip-binaries? #t)
@@ -181,7 +181,7 @@ provides a 'CMakeLists.txt' file as its build system."
                             (build-type "RelWithDebInfo")
                             (tests? #f) ; nothing can be done
                             (test-target "test")
-                            (parallel-build? #t) (parallel-tests? #f)
+                            (parallel-build? #t) (parallel-tests? #t)
                             (validate-runpath? #t)
                             (patch-shebangs? #t)
                             (strip-binaries? #t)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]