tests: Log exceptions thrown inside of unit tests
parent
cfed682d04
commit
7919318be7
|
@ -37,7 +37,11 @@ class TestFailedException : public std::exception {
|
|||
try { \
|
||||
fxn(__VA_ARGS__); \
|
||||
dstream << "[PASS] "; \
|
||||
} catch (...) { \
|
||||
} catch (TestFailedException &e) { \
|
||||
dstream << "[FAIL] "; \
|
||||
num_tests_failed++; \
|
||||
} catch (std::exception &e) { \
|
||||
dstream << "Caught unhandled exception: " << e.what() << std::endl; \
|
||||
dstream << "[FAIL] "; \
|
||||
num_tests_failed++; \
|
||||
} \
|
||||
|
|
Loading…
Reference in New Issue