Skip to content
Snippets Groups Projects
Commit c958d3c9 authored by Brad King's avatar Brad King
Browse files

BUG: Avoid error diagnostic popups on windows for test that crashes on purpose.

parent b2c5192a
Branches
No related tags found
No related merge requests found
......@@ -61,6 +61,10 @@ int test3(int argc, const char* argv[])
int test4(int argc, const char* argv[])
{
#if defined(_WIN32)
/* Avoid error diagnostic popups since we are crashing on purpose. */
SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX);
#endif
(void)argc; (void)argv;
fprintf(stdout, "Output before crash on stdout from crash test.\n");
fprintf(stderr, "Output before crash on stderr from crash test.\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment