| 838 | |
| 839 | |
| 840 | void printTests(ReaderWriterQueueTests const& tests) |
| 841 | { |
| 842 | std::printf(" Supported tests are:\n"); |
| 843 | |
| 844 | std::vector<std::string> names; |
| 845 | tests.getAllTestNames(names); |
| 846 | for (auto it = names.cbegin(); it != names.cend(); ++it) { |
| 847 | std::printf(" %s\n", it->c_str()); |
| 848 | } |
| 849 | } |
| 850 | |
| 851 | |
| 852 | // Basic test harness |