summaryrefslogtreecommitdiff
path: root/deps/uv/test/runner-win.c
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2012-10-10 17:18:48 +0200
committerBert Belder <bertbelder@gmail.com>2012-10-10 17:18:48 +0200
commit87518f1e3c0c91418df260258ee99101b8cb86de (patch)
tree51f2c2b5e9a1d05d8a9c97966d3ef6e9742c2a2a /deps/uv/test/runner-win.c
parenteec8c2edafdb52a4c63dfab77a8d84293dc458d3 (diff)
downloadandroid-node-v8-87518f1e3c0c91418df260258ee99101b8cb86de.tar.gz
android-node-v8-87518f1e3c0c91418df260258ee99101b8cb86de.tar.bz2
android-node-v8-87518f1e3c0c91418df260258ee99101b8cb86de.zip
uv: upgrade to b0c1a38
Diffstat (limited to 'deps/uv/test/runner-win.c')
-rw-r--r--deps/uv/test/runner-win.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/deps/uv/test/runner-win.c b/deps/uv/test/runner-win.c
index ad36719c8f..0a9690e774 100644
--- a/deps/uv/test/runner-win.c
+++ b/deps/uv/test/runner-win.c
@@ -25,6 +25,10 @@
#include <stdio.h>
#include <process.h>
#include <windows.h>
+#if !defined(__MINGW32__)
+#include <crtdbg.h>
+#endif
+
#include "task.h"
#include "runner.h"
@@ -44,6 +48,10 @@ void platform_init(int argc, char **argv) {
/* Disable the "application crashed" popup. */
SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX |
SEM_NOOPENFILEERRORBOX);
+#if !defined(__MINGW32__)
+ _CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_DEBUG);
+ _CrtSetReportMode(_CRT_ERROR, _CRTDBG_MODE_DEBUG);
+#endif
_setmode(0, _O_BINARY);
_setmode(1, _O_BINARY);