fix filename.

shh!
This commit is contained in:
Emmanuel Pacaud 2006-02-02 12:47:58 +00:00
parent be7b6251f3
commit 9c05d2aab1
3 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2006-01-29 Emmanuel Pacaud <emmanuel.pacaud@free.fr>
* test/cairo-test.c (create_svg_surface): fix filename.
* test/.cvsignore: shh!
2006-01-29 Emmanuel Pacaud <emmanuel.pacaud@free.fr>
* src/cairo-svg-surface.c (emit_pattern_stops): fix offset of pattern

View file

@ -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

View file

@ -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);