| 309 | } |
| 310 | |
| 311 | void CommandLineArguments::addExcludeNameFilter(int ac, const char *const *av, int& index) |
| 312 | { |
| 313 | TestFilter* nameFilter = new TestFilter(getParameterField(ac, av, index, "-xn")); |
| 314 | nameFilter->invertMatching(); |
| 315 | nameFilters_= nameFilter->add(nameFilters_); |
| 316 | } |
| 317 | |
| 318 | void CommandLineArguments::addExcludeStrictNameFilter(int ac, const char *const *av, int& index) |
| 319 | { |
nothing calls this directly
no test coverage detected