Skip to content

Commit

Permalink
test: Create output directory even on Win32
Browse files Browse the repository at this point in the history
This avoids cluttering the test directory with thousands of PNG files
and makes the behavior more consistent with other OSes.
  • Loading branch information
Andrea Canciani committed Feb 16, 2012
1 parent 80c46d4 commit 93b0fcf
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/cairo-test.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,10 @@

#ifdef _MSC_VER
#include <crtdbg.h>
#include <direct.h>
#define F_OK 0
#define HAVE_MKDIR 1
#define mkdir _mkdir
#endif

#ifndef FALSE
Expand Down

0 comments on commit 93b0fcf

Please sign in to comment.