diff options
Diffstat (limited to 'test/mask-ctm.c')
-rw-r--r-- | test/mask-ctm.c | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/test/mask-ctm.c b/test/mask-ctm.c index c6814b01..7b3a3943 100644 --- a/test/mask-ctm.c +++ b/test/mask-ctm.c @@ -25,15 +25,6 @@ #include "cairo-test.h" -static cairo_test_draw_function_t draw; - -static const cairo_test_t test = { - "mask-ctm", - "Test that cairo_mask is affected properly by the CTM", - 10, 10, - draw -}; - static cairo_test_status_t draw (cairo_t *cr, int width, int height) { @@ -78,8 +69,10 @@ draw (cairo_t *cr, int width, int height) return CAIRO_TEST_SUCCESS; } -int -main (void) -{ - return cairo_test (&test); -} +CAIRO_TEST (mask_ctm, + "Test that cairo_mask is affected properly by the CTM", + "mask", /* keywords */ + NULL, /* requirements */ + 10, 10, + NULL, draw) + |