summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2014-09-30 12:25:56 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2014-09-30 12:25:56 +0100
commitff23afd5f26e46e9b3c1fbfa31b2809f4329c4f0 (patch)
tree81a48d970bcc24be433e21be4ab90576f6203be3
parent03c3d4b7c159a3004071522bac2461e553fec211 (diff)
downloadcairo-ff23afd5f26e46e9b3c1fbfa31b2809f4329c4f0.tar.gz
test: Include coverage in the normal test run
Currently coverage is marked as slow. It is slower than the typical test, but it is quite a useful check on our rasterisation quality without going too far overboard (unlike partial-coverage!). Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r--test/coverage.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/coverage.c b/test/coverage.c
index a58fc5ff0..fdf801284 100644
--- a/test/coverage.c
+++ b/test/coverage.c
@@ -409,45 +409,45 @@ row_triangles (cairo_t *cr, int width, int height)
CAIRO_TEST (coverage_rectangles,
"Check the fidelity of the rasterisation.",
NULL, /* keywords */
- "target=raster slow", /* requirements */
+ "target=raster", /* requirements */
WIDTH, HEIGHT,
NULL, rectangles)
CAIRO_TEST (coverage_rhombus,
"Check the fidelity of the rasterisation.",
NULL, /* keywords */
- "target=raster slow", /* requirements */
+ "target=raster", /* requirements */
2*WIDTH, 2*WIDTH,
NULL, rhombus)
CAIRO_TEST (coverage_intersecting_quads,
"Check the fidelity of the rasterisation.",
NULL, /* keywords */
- "target=raster slow", /* requirements */
+ "target=raster", /* requirements */
WIDTH, HEIGHT,
NULL, intersecting_quads)
CAIRO_TEST (coverage_intersecting_triangles,
"Check the fidelity of the rasterisation.",
NULL, /* keywords */
- "target=raster slow", /* requirements */
+ "target=raster", /* requirements */
WIDTH, HEIGHT,
NULL, intersecting_triangles)
CAIRO_TEST (coverage_row_triangles,
"Check the fidelity of the rasterisation.",
NULL, /* keywords */
- "target=raster slow", /* requirements */
+ "target=raster", /* requirements */
WIDTH, HEIGHT,
NULL, row_triangles)
CAIRO_TEST (coverage_column_triangles,
"Check the fidelity of the rasterisation.",
NULL, /* keywords */
- "target=raster slow", /* requirements */
+ "target=raster", /* requirements */
WIDTH, HEIGHT,
NULL, column_triangles)
CAIRO_TEST (coverage_triangles,
"Check the fidelity of the rasterisation.",
NULL, /* keywords */
- "target=raster slow", /* requirements */
+ "target=raster", /* requirements */
WIDTH, HEIGHT,
NULL, triangles)