From 9c05d2aab15b589197436af5287ae9297c0314bd Mon Sep 17 00:00:00 2001 From: Emmanuel Pacaud Date: Thu, 2 Feb 2006 12:47:58 +0000 Subject: [PATCH] fix filename. shh! --- ChangeLog | 5 +++++ test/.cvsignore | 4 ++-- test/cairo-test.c | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index cce097447..01b306532 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-01-29 Emmanuel Pacaud + + * test/cairo-test.c (create_svg_surface): fix filename. + * test/.cvsignore: shh! + 2006-01-29 Emmanuel Pacaud * src/cairo-svg-surface.c (emit_pattern_stops): fix offset of pattern diff --git a/test/.cvsignore b/test/.cvsignore index 82a713fac..9071ad67b 100644 --- a/test/.cvsignore +++ b/test/.cvsignore @@ -88,8 +88,8 @@ xlib-surface *-ps-argb32-out.ps *-ps-rgb24-out.png *-ps-rgb24-out.ps -*-svg-rgb24-out.png -*-svg-rgb24-out.svg +*-svg-argb32-out.png +*-svg-argb32-out.svg *-test-fallback-argb32-out.png *-test-fallback-rgb24-out.png *-test-meta-argb32-out.png diff --git a/test/cairo-test.c b/test/cairo-test.c index ef19e34fb..557ccb6fd 100644 --- a/test/cairo-test.c +++ b/test/cairo-test.c @@ -1305,7 +1305,7 @@ create_svg_surface (cairo_test_t *test, ptc->width = width; ptc->height = height; - xasprintf (&ptc->filename, "%s-%s%s", test->name, "svg-rgb24-out", ".svg"); + xasprintf (&ptc->filename, "%s-%s%s", test->name, "svg-argb32-out", ".svg"); surface = cairo_svg_surface_create (ptc->filename, width, height); if (cairo_surface_status (surface)) { free (ptc->filename);