summaryrefslogtreecommitdiff
path: root/test/cairo-test-runner.c
diff options
context:
space:
mode:
authorJeff Muizelaar <jmuizelaar@mozilla.com>2009-02-10 17:58:28 -0500
committerJeff Muizelaar <jmuizelaar@mozilla.com>2009-02-10 17:58:28 -0500
commit70297f257d4dc0accb5183b806d43a033887acb7 (patch)
tree9d359e755a8708ca815b3b5cdeeb05db98ffa93e /test/cairo-test-runner.c
parentb9f0c4b25223830ce73f7e3adef85a0e97a31c0e (diff)
downloadcairo-70297f257d4dc0accb5183b806d43a033887acb7.tar.gz
[test] Add crtdbg.h include
crtdbg.h is required for _CrtSetReportMode() and _CrtSetReportFile().
Diffstat (limited to 'test/cairo-test-runner.c')
-rw-r--r--test/cairo-test-runner.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/cairo-test-runner.c b/test/cairo-test-runner.c
index e604d0d91..1d79c7e3a 100644
--- a/test/cairo-test-runner.c
+++ b/test/cairo-test-runner.c
@@ -54,6 +54,10 @@
#include <sys/wait.h>
#endif
+#ifdef _MSC_VER
+#include <crtdbg.h>
+#endif
+
typedef struct _cairo_test_list {
const cairo_test_t *test;
struct _cairo_test_list *next;