meson: Add '@EXTRA_ARGS@' to generate_test_runner arguments

Extended the argument list in meson generator for the test
runner strict by adding '@EXTRA_ARGS@'. This change enables the test
runner script to accept additional configuration parameters alongside
'@INPUT@' and '@OUTPUT@', increasing its flexibility.
This commit is contained in:
Dominik Loidolt
2025-04-17 13:41:26 +02:00
parent 23e8edbd64
commit 2881e8de4d
+1 -1
View File
@@ -76,5 +76,5 @@ endif
gen_test_runner = generator(
find_program('auto/generate_test_runner.rb'),
output: '@BASENAME@_Runner.c',
arguments: ['@INPUT@', '@OUTPUT@']
arguments: ['@EXTRA_ARGS@', '@INPUT@', '@OUTPUT@']
)