The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
586 B
16 lines
586 B
## Improve test setup selection |
|
|
|
Test setups are now identified (also) by the project they belong to and it |
|
is possible to select the used test setup from a specific project. E.g. |
|
to use a test setup `some_setup` from project `some_project` for all |
|
executed tests one can use |
|
|
|
meson test --setup some_project:some_setup |
|
|
|
Should one rather want test setups to be used from the same project as |
|
where the current test itself has been defined, one can use just |
|
|
|
meson test --setup some_setup |
|
|
|
In the latter case every (sub)project must have a test setup `some_setup` |
|
defined in it.
|
|
|