diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-10-05 20:55:36 +0900 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-10-05 20:55:36 +0900 |
commit | 1d33f308dd41c202633378af27369eb57f019d1b (patch) | |
tree | b64a80ed345ad45ed673d9d376eee38f20fc830e /guix/build-system/meson.scm | |
parent | a4ea332bc219e14560d3a5daaa658425d898ec37 (diff) |
build/meson: Enable parallel tests by default.meson-parallel-tests
* 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
Diffstat (limited to 'guix/build-system/meson.scm')
-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) |