aboutsummaryrefslogtreecommitdiff
path: root/tests/main.cpp
diff options
context:
space:
mode:
authorCharles Giessen <charles@lunarg.com>2023-06-15 18:25:42 -0600
committerCharles Giessen <46324611+charles-lunarg@users.noreply.github.com>2023-06-16 15:06:03 -0600
commit7040985c553c1a5ecf998bc61e53e5ae76fd41c1 (patch)
treec5d8fba99bbdc978e5bdb5b294eee35636665dd9 /tests/main.cpp
parent961ec2437fbaac1abd9eb9ee5b7e83f7152ec681 (diff)
downloadusermoji-7040985c553c1a5ecf998bc61e53e5ae76fd41c1.tar.xz
test: Add basic MockICD test
Diffstat (limited to 'tests/main.cpp')
-rw-r--r--tests/main.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/main.cpp b/tests/main.cpp
index a14e8e99..31131426 100644
--- a/tests/main.cpp
+++ b/tests/main.cpp
@@ -26,18 +26,6 @@
int main(int argc, char **argv) {
int result;
-#if defined(_WIN32)
-#if !defined(NDEBUG)
- _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
- _CrtSetReportFile(_CRT_ASSERT, _CRTDBG_FILE_STDERR);
-#endif
- // Avoid "Abort, Retry, Ignore" dialog boxes
- _set_abort_behavior(0, _WRITE_ABORT_MSG | _CALL_REPORTFAULT);
- SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX);
- _CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_FILE);
- _CrtSetReportFile(_CRT_ASSERT, _CRTDBG_FILE_STDERR);
-#endif
-
::testing::InitGoogleTest(&argc, argv);
result = RUN_ALL_TESTS();