diff options
author | Carl Worth <cworth@cworth.org> | 2005-03-09 13:58:20 +0000 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2005-03-09 13:58:20 +0000 |
commit | c3bd9b1b8d55d1128a7f70096b7135a80c6c9bed (patch) | |
tree | 73e97f72191c69ca8916ed439b11135f3e3d4d33 /test/line-width.c | |
parent | 80b2742952eeadc116bef8865f55ecb47b4a0a5e (diff) |
Change the draw function under test to return a cairo_test_status_t so that it can indicate test failure even if there is no result image.
Diffstat (limited to 'test/line-width.c')
-rw-r--r-- | test/line-width.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/line-width.c b/test/line-width.c index 9c3ed89b9..41e741991 100644 --- a/test/line-width.c +++ b/test/line-width.c @@ -36,7 +36,7 @@ cairo_test_t test = { IMAGE_WIDTH, IMAGE_HEIGHT }; -static void +static cairo_test_status_t draw (cairo_t *cr, int width, int height) { int i; @@ -54,6 +54,8 @@ draw (cairo_t *cr, int width, int height) cairo_stroke (cr); cairo_translate (cr, 0, i+3); } + + return CAIRO_TEST_SUCCESS; } int |