diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-10-05 20:55:36 +0900 |
---|---|---|
committer | User <user@domain> | 2024-11-26 20:54:10 +0900 |
commit | 975f5ccb06fb76aabcec938d86a43015b2f2632f (patch) | |
tree | 1fa6616df1fb097228e671200ba464fd4ba717f6 | |
parent | 5ff9e51e2c4dae0dc74f5c85ec553e89fe1824fd (diff) |
build/meson: Enable parallel tests by default.
* guix/build-system/meson.scm (meson-build) <#:parallel-tests?>: Set default
value of argument to #t.
Fixes: https://issues.guix.gnu.org/73135
Change-Id: I0d2c00c610778534a4558c446bf71955581697a1
-rw-r--r-- | guix/build-system/meson.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/build-system/meson.scm b/guix/build-system/meson.scm index eb2714dd78..67be007717 100644 --- a/guix/build-system/meson.scm +++ b/guix/build-system/meson.scm @@ -194,7 +194,7 @@ TRIPLET." (test-options ''()) (glib-or-gtk? #f) (parallel-build? #t) - (parallel-tests? #f) + (parallel-tests? #t) (validate-runpath? #t) (patch-shebangs? #t) (strip-binaries? #t) |