Allow the use of wildcards (e.g. *) to match test names in `meson test`. Raise an error is given test name does not match any test. Optimize the search by looping through the list of tests only once.pull/11818/head
parent
11521c6db7
commit
e7b9dfac98
5 changed files with 99 additions and 7 deletions
@ -0,0 +1,9 @@ |
||||
## Wildcards in list of tests to run |
||||
|
||||
The `meson test` command now accepts wildcards in the list of test names. |
||||
For example `meson test basic*` will run all tests whose name begins |
||||
with "basic". |
||||
|
||||
meson will report an error if the given test name does not match any |
||||
existing test. meson will log a warning if two redundant test names |
||||
are given (for example if you give both "proj:basic" and "proj:"). |
Loading…
Reference in new issue