From e90073f7ddc6f461a935bc360c409b04f1fe9f74 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Wed, 3 Sep 2008 16:38:03 +0100 Subject: [test] Build test suite into single binary. Avoid calling libtool to link every single test case, by building just one binary from all the sources. This binary is then given the task of choosing tests to run (based on user selection and individual test requirement), forking each test into its own process and accumulating the results. --- test/extend-repeat.c | 22 +++++++--------------- 1 file changed, 7 insertions(+), 15 deletions(-) (limited to 'test/extend-repeat.c') diff --git a/test/extend-repeat.c b/test/extend-repeat.c index 32c43a539..e6c0bccb6 100644 --- a/test/extend-repeat.c +++ b/test/extend-repeat.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-repeat", - "Test CAIRO_EXTEND_REPEAT for surface patterns", - 256 + 32*2, 192 + 32*2, - draw -}; +static const char *png_filename = "romedalen.png"; static cairo_test_status_t draw (cairo_t *cr, int width, int height) @@ -28,8 +19,9 @@ draw (cairo_t *cr, int width, int height) return CAIRO_TEST_SUCCESS; } -int -main (void) -{ - return cairo_test (&test); -} +CAIRO_TEST (extend_repeat, + "Test CAIRO_EXTEND_REPEAT for surface patterns", + "extend", /* keywords */ + NULL, /* requirements */ + 256 + 32*2, 192 + 32*2, + NULL, draw) -- cgit v1.2.1