diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2010-06-11 12:40:36 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2010-06-11 12:40:36 +0100 |
commit | c761e0c5bb55e8869521ad5b4a2447ea9abcb4d1 (patch) | |
tree | debe63ded0b88c5584507a5e82af0a8ccdf5faac /test/coverage.c | |
parent | b49c944fe4abb9f3c70fac02a71061bf8d07259a (diff) |
test: Restrict the coverage tests to raster targets.
Typo inside the requirements failed to prevent the tests running on the
vector backends.
Diffstat (limited to 'test/coverage.c')
-rw-r--r-- | test/coverage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/coverage.c b/test/coverage.c index ebb13da7..70ef97b7 100644 --- a/test/coverage.c +++ b/test/coverage.c @@ -123,13 +123,13 @@ triangles (cairo_t *cr, int width, int height) CAIRO_TEST (coverage_rectangles, "Check the fidelity of the rasterisation.", NULL, /* keywords */ - "raster", /* requirements */ + "target=raster", /* requirements */ WIDTH, HEIGHT, NULL, rectangles) CAIRO_TEST (coverage_triangles, "Check the fidelity of the rasterisation.", NULL, /* keywords */ - "raster", /* requirements */ + "target=raster", /* requirements */ WIDTH, HEIGHT, NULL, triangles) |