summaryrefslogtreecommitdiff
path: root/test/pdf-surface-source.c
diff options
context:
space:
mode:
authorBryce W. Harrington <b.harrington@samsung.com>2013-09-08 20:10:03 +0000
committerUli Schlachter <psychon@znc.in>2013-09-09 21:15:50 +0200
commit6731023f1bba7e26dbbc06defdbb37ac5267e9db (patch)
treebb511744e86f09160ae892bbde227ae902957dd4 /test/pdf-surface-source.c
parentf3574b8b3b3e9dbd9fca927096e5a8205e57033d (diff)
downloadcairo-6731023f1bba7e26dbbc06defdbb37ac5267e9db.tar.gz
test: Fix several tests to place output files in the output directory
The standard location for test output is cairo/test/output. The harness itself was updated to write automatically generated images in this directory, however a number of tests generate their own local output files. This patch updates these tests to write their output into CAIRO_TEST_OUTPUT_DIR (which defaults to cairo/test/output) as well, in the interest of decluttering the test directory. Signed-off-by: Bryce Harrington <b.harrington@samsung.com> Signed-off-by: Uli Schlachter <psychon@znc.in>
Diffstat (limited to 'test/pdf-surface-source.c')
-rw-r--r--test/pdf-surface-source.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/pdf-surface-source.c b/test/pdf-surface-source.c
index 078af3a15..63072717c 100644
--- a/test/pdf-surface-source.c
+++ b/test/pdf-surface-source.c
@@ -28,12 +28,14 @@
#include "surface-source.c"
+#define BASENAME "pdf-surface-source.out"
+
static cairo_surface_t *
create_source_surface (int size)
{
cairo_surface_t *surface;
- surface = cairo_pdf_surface_create ("pdf-surface-source.out.pdf", size, size);
+ surface = cairo_pdf_surface_create (CAIRO_TEST_OUTPUT_DIR "/" BASENAME ".pdf", size, size);
cairo_surface_set_fallback_resolution (surface, 72., 72.);
return surface;