From dc9490134f8a3665843f287f721dc587e7c48ea2 Mon Sep 17 00:00:00 2001 From: Henrik Gramner Date: Mon, 8 Apr 2024 22:30:48 +0200 Subject: [PATCH] meson: Enable parallel execution of checkasm in 'meson test' It was originally disabled due to older meson versions mixing the output of 'meson test -v' from different tests, which made the log difficult to read. Newer versions however caches the output from each test as it runs and prints it in one contiguous block, so that's no longer an issue. --- tests/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/meson.build b/tests/meson.build index 11db0a56..38a591b5 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -100,7 +100,7 @@ if is_asm_enabled ], ) - test('checkasm', checkasm, suite: 'checkasm', timeout: 180, is_parallel: false) + test('checkasm', checkasm, suite: 'checkasm', timeout: 180) benchmark('checkasm', checkasm, suite: 'checkasm', timeout: 3600, args: '--bench') endif