Get the current result (either \a EXIT_SUCCESS or \a EXIT_FAILURE). Requires all threads to be done first.
| 337 | |
| 338 | /// Get the current result (either \a EXIT_SUCCESS or \a EXIT_FAILURE). Requires all threads to be done first. |
| 339 | int get_result() { |
| 340 | assert(running_threads.load() == 0); |
| 341 | return result.load(); |
| 342 | } |
| 343 | |
| 344 | /** Wait for test-runners to be completed. |
| 345 | * |
no test coverage detected