diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2008-11-04 13:41:02 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2008-11-04 13:41:02 +0000 |
commit | 9900a2adf3e43e752bd421f00e81873b41db4c30 (patch) | |
tree | 8dcd5321bb19401c24b07edb8750198887ffe416 /test/mime-data.c | |
parent | c13a09ddb411287224c15728b14f23fef472f7d0 (diff) |
[test] Update mime-data jpeg reference data.
<adrianj> ickle_: If we are going to use a different image for jpeg in
mime-data maybe we could create a jpg that contains the text "jpeg". That
way when support for the other image formats is added the mime-data test
could have one image for each type with each image and it is easy to see
that each image is the correct one.
Diffstat (limited to 'test/mime-data.c')
-rw-r--r-- | test/mime-data.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/mime-data.c b/test/mime-data.c index dd1e0955f..a387d6726 100644 --- a/test/mime-data.c +++ b/test/mime-data.c @@ -39,7 +39,7 @@ read_jpg_file (const cairo_test_context_t *ctx, * when the JPEG representation is used in preference to the image * surface. */ - const char jpg_filename[] = "scarab.jpg"; + const char jpg_filename[] = "jpeg.jpg"; FILE *file; unsigned char *buf; unsigned int len; @@ -92,7 +92,7 @@ draw (cairo_t *cr, int width, int height) return cairo_test_status_from_status (ctx, status); } - image = cairo_test_create_surface_from_png (ctx, "romedalen.png"); + image = cairo_image_surface_create (CAIRO_FORMAT_RGB24, 200, 50); status = cairo_surface_set_mime_data (image, CAIRO_MIME_TYPE_JPEG, jpg_data, jpg_len, free); if (status) { @@ -111,5 +111,5 @@ CAIRO_TEST (mime_data, "Check that the mime-data embedding works", "jpeg, api", /* keywords */ NULL, /* requirements */ - 10, 10, + 200, 50, NULL, draw) |