Helper function to get specific test output
| 74 | |
| 75 | // Helper function to get specific test output |
| 76 | inline std::string getTestOutput(size_t index) { |
| 77 | if (index < test_output.size()) { |
| 78 | return test_output[index]; |
| 79 | } |
| 80 | return ""; |
| 81 | } |
| 82 | |
| 83 | // Helper function to wait for condition with timeout |
| 84 | template<typename Condition> |