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/half-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/half-coverage.c')
-rw-r--r-- | test/half-coverage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/half-coverage.c b/test/half-coverage.c index 8dc97845..50f3b850 100644 --- a/test/half-coverage.c +++ b/test/half-coverage.c @@ -143,13 +143,13 @@ triangles (cairo_t *cr, int width, int height) CAIRO_TEST (half_coverage_rectangles, "Check the fidelity of the rasterisation.", NULL, /* keywords */ - "raster", /* requirements */ + "target=raster", /* requirements */ WIDTH * SIZE, HEIGHT, NULL, rectangles) CAIRO_TEST (half_coverage_triangles, "Check the fidelity of the rasterisation.", NULL, /* keywords */ - "raster", /* requirements */ + "target=raster", /* requirements */ WIDTH * SIZE, HEIGHT, NULL, triangles) |