| ... | ... | @@ -72,13 +72,13 @@ Select individual TEST_CASE using their user-defined tags |
|
|
|
```bash
|
|
|
|
<path_to_bin>/tests_<module_name> [tag1][tag34]
|
|
|
|
```
|
|
|
|
or with wildcards of their names (example with the `Unfold` operator) :
|
|
|
|
or with wildcards of their names (example with the `Unsqueeze` operator) :
|
|
|
|
```bash
|
|
|
|
<path_to_bin>/tests_<module_name> [tag1][tag34] *nfold*
|
|
|
|
<path_to_bin>/tests_<module_name> *nsqu*
|
|
|
|
```
|
|
|
|
### Select a given section within the test_case
|
|
|
|
```bash
|
|
|
|
<path_to_bin>/tests_<module_name> *nfold* -c "section1" -c "subsection1.1"
|
|
|
|
<path_to_bin>/tests_<module_name> *nsqu* -c "section1" -c "subsection1.1"
|
|
|
|
```
|
|
|
|
> :warning: You need to write the whole path to the subsection you want, just giving `-c "subsection1.1"`
|
|
|
|
|
| ... | ... | |