summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryce W. Harrington <b.harrington@samsung.com>2013-09-08 20:10:04 +0000
committerUli Schlachter <psychon@znc.in>2013-09-09 21:28:35 +0200
commit53255625c07d8f24403f0cb1b5a4dbaac142e4da (patch)
tree2644e6edcb7cdd76ff9da4d5df9e04a58728b557
parentf9dcd07d22a5269bf799317a36bb2887d8f9af64 (diff)
svg, test: Refer to output filename by variable, not a hardcoded valueHEADmaster
Signed-off-by: Bryce Harrington <b.harrington@samsung.com> Signed-off-by: Uli Schlachter <psychon@znc.in>
-rw-r--r--test/svg-surface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/svg-surface.c b/test/svg-surface.c
index c0cdc1616..8ee3b613c 100644
--- a/test/svg-surface.c
+++ b/test/svg-surface.c
@@ -122,7 +122,7 @@ preamble (cairo_test_context_t *ctx)
cairo_destroy (cr);
cairo_surface_destroy (surface);
- printf ("svg-surface: Please check svg-surface.svg to make sure it looks happy.\n");
+ printf ("svg-surface: Please check %s to make sure it looks happy.\n", filename);
free (filename);
return CAIRO_TEST_SUCCESS;
}