summaryrefslogtreecommitdiff
path: root/test/source-clip.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/source-clip.c')
-rw-r--r--test/source-clip.c20
1 files changed, 6 insertions, 14 deletions
diff --git a/test/source-clip.c b/test/source-clip.c
index 1f51f328..cbb28551 100644
--- a/test/source-clip.c
+++ b/test/source-clip.c
@@ -29,15 +29,6 @@
#define SIZE 12
-static cairo_test_draw_function_t draw;
-
-static const cairo_test_t test = {
- "source-clip",
- "Test that a source surface is not affected by a clip",
- SIZE, SIZE,
- draw
-};
-
static cairo_test_status_t
draw (cairo_t *cr, int width, int height)
{
@@ -78,8 +69,9 @@ draw (cairo_t *cr, int width, int height)
return CAIRO_TEST_SUCCESS;
}
-int
-main (void)
-{
- return cairo_test (&test);
-}
+CAIRO_TEST (source_clip,
+ "Test that a source surface is not affected by a clip",
+ "clip", /* keywords */
+ NULL, /* requirements */
+ SIZE, SIZE,
+ NULL, draw)