| 50 | } |
| 51 | |
| 52 | bool run(unsigned int iterations = 1) |
| 53 | { |
| 54 | bool success = true; |
| 55 | for (auto it = testVec.cbegin(); it != testVec.cend(); ++it) { |
| 56 | if (!execTest(*it, iterations)) { |
| 57 | success = false; |
| 58 | } |
| 59 | } |
| 60 | return success; |
| 61 | } |
| 62 | |
| 63 | bool run(std::vector<std::string> const& which, unsigned int iterations = 1) |
| 64 | { |