Unit tests exit code zero prints: * The test run did not record any output.
Only non-zero exit codes show the test runner output.
I'm using Criterion and this is in meson.build:
test(
'unit',
test_exe,
args: ['--verbose'],
)
If I run the test_exe normally from the terminal or redirect its output I always see some text printed to the terminal (even without the --verbose option).
So I guess here the meson extension is not appending the output to the test results vscode panel.
Is it possible to have the extension append the output?

Unit tests exit code zero prints: * The test run did not record any output.
Only non-zero exit codes show the test runner output.
I'm using Criterion and this is in meson.build:
If I run the test_exe normally from the terminal or redirect its output I always see some text printed to the terminal (even without the --verbose option).
So I guess here the meson extension is not appending the output to the test results vscode panel.
Is it possible to have the extension append the output?