[cairo-commit] test/coverage.c

Chris Wilson ickle at kemper.freedesktop.org
Tue Sep 30 04:32:42 PDT 2014


 test/coverage.c |   14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

New commits:
commit ff23afd5f26e46e9b3c1fbfa31b2809f4329c4f0
Author: Chris Wilson <chris at chris-wilson.co.uk>
Date:   Tue Sep 30 12:25:56 2014 +0100

    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 at chris-wilson.co.uk>

diff --git a/test/coverage.c b/test/coverage.c
index a58fc5f..fdf8012 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)


More information about the cairo-commit mailing list