| 302 | } |
| 303 | |
| 304 | void CommandLineArguments::addStrictNameFilter(int ac, const char *const *av, int& index) |
| 305 | { |
| 306 | TestFilter* nameFilter = new TestFilter(getParameterField(ac, av, index, "-sn")); |
| 307 | nameFilter->strictMatching(); |
| 308 | nameFilters_= nameFilter->add(nameFilters_); |
| 309 | } |
| 310 | |
| 311 | void CommandLineArguments::addExcludeNameFilter(int ac, const char *const *av, int& index) |
| 312 | { |
nothing calls this directly
no test coverage detected