meson: allow passing arguments to generate_test_runner.rb#826
Closed
lovetheguitar wants to merge 1 commit intoThrowTheSwitch:masterfrom
Closed
meson: allow passing arguments to generate_test_runner.rb#826lovetheguitar wants to merge 1 commit intoThrowTheSwitch:masterfrom
generate_test_runner.rb#826lovetheguitar wants to merge 1 commit intoThrowTheSwitch:masterfrom
Conversation
This change enables a user to configure the test generation, e.g. enable parametrized tests like so:
```meson
gen_test_runner.process(
'test_platform.c' , extra_args: ['--use_param_tests=1']
```
Author
|
Whoopsie, there is an existing open PR - please consider #777 instead. Sorry for the noise. 🙃 |
Contributor
|
@lovetheguitar can you review #777 and put approval to it if you agree with it? I tried meson, but never got it working, so it is safe to say that if more people approve that MR Mark will merge it sooner :) (it does not work like that but still nice to have some confidence) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This change enables a user to configure the test generation, e.g. enable parametrized tests like so:
gen_test_runner.process( 'test_platform.c' , extra_args: ['--use_param_tests=1']This feature is documented here in the meson documentation.
Btw. thanks for the great library. :)