summaryrefslogtreecommitdiff
path: root/test/leaky-dashed-rectangle.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/leaky-dashed-rectangle.c')
-rw-r--r--test/leaky-dashed-rectangle.c20
1 files changed, 6 insertions, 14 deletions
diff --git a/test/leaky-dashed-rectangle.c b/test/leaky-dashed-rectangle.c
index b593991b2..25f5674e9 100644
--- a/test/leaky-dashed-rectangle.c
+++ b/test/leaky-dashed-rectangle.c
@@ -35,15 +35,6 @@
#define WIDTH 60
#define HEIGHT 60
-static cairo_test_draw_function_t draw;
-
-static const cairo_test_t test = {
- "leaky-dashed-rectangle",
- "Exercises bug in which a dashed stroke leaks in from outside the surface",
- WIDTH, HEIGHT,
- draw
-};
-
static cairo_test_status_t
draw (cairo_t *cr, int width, int height)
{
@@ -87,8 +78,9 @@ draw (cairo_t *cr, int width, int height)
return CAIRO_TEST_SUCCESS;
}
-int
-main (void)
-{
- return cairo_test (&test);
-}
+CAIRO_TEST (leaky_dashed_rectangle,
+ "Exercises bug in which a dashed stroke leaks in from outside the surface",
+ "dash, stroke", /* keywords */
+ NULL, /* requirements */
+ WIDTH, HEIGHT,
+ NULL, draw)