| 15 | #include "layer_test_framework.h" |
| 16 | |
| 17 | VkTestFramework::VkTestFramework() { |
| 18 | #ifdef _WIN32 |
| 19 | _set_abort_behavior(0, _WRITE_ABORT_MSG | _CALL_REPORTFAULT); |
| 20 | SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX); |
| 21 | _CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_FILE); |
| 22 | _CrtSetReportFile(_CRT_ASSERT, _CRTDBG_FILE_STDERR); |
| 23 | #endif // _WIN32 |
| 24 | } |
| 25 | VkTestFramework::~VkTestFramework() {} |
nothing calls this directly
no outgoing calls
no test coverage detected