diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2010-06-12 13:48:12 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2010-06-12 14:06:06 +0100 |
commit | 299263f8c912d3468d51ed22bcb6ab96275709f0 (patch) | |
tree | c6bbb38e06e65519b9f6cfe40009a845a4bc2e23 /test/half-coverage.c | |
parent | 53139261c7ba1a4cc0b869cb48c136b0362a3b0c (diff) |
test: Disable tests that are too slow to run by default.
Introduce a slow mode [-s] to the runner, and add "slow" to the
requirements for the very long running tests like the coverage stress
tests.
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 50f3b850..38cafda7 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 */ - "target=raster", /* requirements */ + "target=raster slow", /* requirements */ WIDTH * SIZE, HEIGHT, NULL, rectangles) CAIRO_TEST (half_coverage_triangles, "Check the fidelity of the rasterisation.", NULL, /* keywords */ - "target=raster", /* requirements */ + "target=raster slow", /* requirements */ WIDTH * SIZE, HEIGHT, NULL, triangles) |