summaryrefslogtreecommitdiff
path: root/test/extend-reflect-similar.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/extend-reflect-similar.c')
-rw-r--r--test/extend-reflect-similar.c22
1 files changed, 7 insertions, 15 deletions
diff --git a/test/extend-reflect-similar.c b/test/extend-reflect-similar.c
index c1914b31..fa376a7b 100644
--- a/test/extend-reflect-similar.c
+++ b/test/extend-reflect-similar.c
@@ -1,15 +1,6 @@
#include "cairo-test.h"
-const char png_filename[] = "romedalen.png";
-
-static cairo_test_draw_function_t draw;
-
-static const cairo_test_t test = {
- "extend-reflect-similar",
- "Test CAIRO_EXTEND_REFLECT for surface patterns",
- 256 + 32*2, 192 + 32*2,
- draw
-};
+static const char *png_filename = "romedalen.png";
static cairo_surface_t *
clone_similar_surface (cairo_surface_t * target, cairo_surface_t *surface)
@@ -52,8 +43,9 @@ draw (cairo_t *cr, int width, int height)
return CAIRO_TEST_SUCCESS;
}
-int
-main (void)
-{
- return cairo_test (&test);
-}
+CAIRO_TEST (extend_reflect_similar,
+ "Test CAIRO_EXTEND_REFLECT for surface patterns",
+ "extend", /* keywords */
+ NULL, /* requirements */
+ 256 + 32*2, 192 + 32*2,
+ NULL, draw)