andreas pushed a commit to branch meson-enable-parallel-tests in repository guix.
commit 1fc53b54338581fece360a7abbb0f4b2ca0a4e07 Author: Maxim Cournoyer <[email protected]> AuthorDate: Sat Oct 5 20:55:36 2024 +0900 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 --- guix/build-system/meson.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)
