| 47 | #endif // _WIN32 |
| 48 | |
| 49 | VkTestFramework::VkTestFramework() { |
| 50 | #ifdef _WIN32 |
| 51 | _set_abort_behavior(0, _WRITE_ABORT_MSG | _CALL_REPORTFAULT); |
| 52 | SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX); |
| 53 | _CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_FILE); |
| 54 | _CrtSetReportFile(_CRT_ASSERT, _CRTDBG_FILE_STDERR); |
| 55 | #endif // _WIN32 |
| 56 | } |
| 57 | VkTestFramework::~VkTestFramework() {} |
| 58 | |
| 59 | #ifdef __ANDROID__ |
nothing calls this directly
no outgoing calls
no test coverage detected