| 8870 | std::size_t listTestsNamesOnly( Config const& config ); |
| 8871 | |
| 8872 | struct TagInfo { |
| 8873 | void add( std::string const& spelling ); |
| 8874 | std::string all() const; |
| 8875 | |
| 8876 | std::set<std::string> spellings; |
| 8877 | std::size_t count = 0; |
| 8878 | }; |
| 8879 | |
| 8880 | std::size_t listTags( Config const& config ); |
| 8881 |