id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 2044,windows debug popups in build slave mode,troy d. straszheim,troy d. straszheim,"In certain cases tests can trigger an assertion failure in a lower level library which, when compiled debug, can pop up a dialog box and ruin your whole day. Evan dug up that: This code can be used to completely suppress error message popup windows during testing: {{{ SetErrorMode( SEM_NOGPFAULTERRORBOX ); _CrtSetReportMode( _CRT_ASSERT, _CRTDBG_MODE_FILE ); _CrtSetReportFile( _CRT_ASSERT, _CRTDBG_FILE_STDERR ); }}} Unfortunately, python doesn't seem to include the latter two functions yet. Seems like this should go into boost.test itself... but some libraries don't use boost.test. ",Bugs,closed,To Be Determined,CMake,,Problem,invalid,,