pajoye Wed May 21 15:55:31 2008 UTC
Modified files: (Branch: PHP_5_3)
/php-src/main main.c
Log:
- actually disable the ASSERT error dialog box (affects debug mode only),
helps to run the tests and coverage analyze
http://cvs.php.net/viewvc.cgi/php-src/main/main.c?r1=1.640.2.23.2.57.2.21&r2=1.640.2.23.2.57.2.22&diff_format=u
Index: php-src/main/main.c
diff -u php-src/main/main.c:1.640.2.23.2.57.2.21
php-src/main/main.c:1.640.2.23.2.57.2.22
--- php-src/main/main.c:1.640.2.23.2.57.2.21 Sat Mar 22 12:56:16 2008
+++ php-src/main/main.c Wed May 21 15:55:31 2008
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: main.c,v 1.640.2.23.2.57.2.21 2008/03/22 12:56:16 tony2001 Exp $ */
+/* $Id: main.c,v 1.640.2.23.2.57.2.22 2008/05/21 15:55:31 pajoye Exp $ */
/* {{{ includes
*/
@@ -1691,6 +1691,9 @@
if (old_invalid_parameter_handler != NULL) {
_set_invalid_parameter_handler(old_invalid_parameter_handler);
}
+
+ /* Disable the message box for assertions.*/
+ _CrtSetReportMode(_CRT_ASSERT, 0);
#endif
#else
php_os=PHP_OS;
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php