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.
This commit is contained in:
Henrik Gramner 2024-04-08 22:30:48 +02:00
parent f6e05da093
commit dc9490134f
1 changed files with 1 additions and 1 deletions

View File

@ -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