test: Space out keywords for clarity

As another nitpick, a comma alone is legal for separating keywords, but
most tests use a comma and a space.  Update the few tests that don't,
to make this consistent.

Signed-off-by: Bryce Harrington <b.harrington@samsung.com>
Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
Bryce W. Harrington 2013-09-12 22:55:02 +00:00 committed by Uli Schlachter
parent a6ace0cf6b
commit 640eb02067
9 changed files with 11 additions and 11 deletions

View file

@ -67,14 +67,14 @@ draw_unaligned (cairo_t *cr, int width, int height)
CAIRO_TEST (image_bug_710072_aligned, CAIRO_TEST (image_bug_710072_aligned,
"Tests a bug where we may compute spans greater than bounded extents", "Tests a bug where we may compute spans greater than bounded extents",
"extents,fill,stroke", /* keywords */ "extents, fill, stroke", /* keywords */
NULL, /* requirements */ NULL, /* requirements */
15, 15, 15, 15,
NULL, draw_aligned) NULL, draw_aligned)
CAIRO_TEST (image_bug_710072_unaligned, CAIRO_TEST (image_bug_710072_unaligned,
"Tests a bug where we may compute spans greater than bounded extents", "Tests a bug where we may compute spans greater than bounded extents",
"extents,fill,stroke", /* keywords */ "extents, fill, stroke", /* keywords */
NULL, /* requirements */ NULL, /* requirements */
15, 15, 15, 15,
NULL, draw_unaligned) NULL, draw_unaligned)

View file

@ -93,7 +93,7 @@ draw (cairo_t *cr, int width, int height)
CAIRO_TEST (mesh_pattern_accuracy, CAIRO_TEST (mesh_pattern_accuracy,
"Paint mesh pattern", "Paint mesh pattern",
"mesh,pattern", /* keywords */ "mesh, pattern", /* keywords */
NULL, /* requirements */ NULL, /* requirements */
SIZE, SIZE, SIZE, SIZE,
NULL, draw) NULL, draw)

View file

@ -129,7 +129,7 @@ draw (cairo_t *cr, int width, int height)
CAIRO_TEST (mesh_pattern_conical, CAIRO_TEST (mesh_pattern_conical,
"Paint a conical pattern using a mesh pattern", "Paint a conical pattern using a mesh pattern",
"conical,mesh,pattern", /* keywords */ "conical, mesh, pattern", /* keywords */
NULL, /* requirements */ NULL, /* requirements */
WIDTH, HEIGHT, WIDTH, HEIGHT,
NULL, draw) NULL, draw)

View file

@ -108,7 +108,7 @@ draw (cairo_t *cr, int width, int height)
CAIRO_TEST (mesh_pattern_control_points, CAIRO_TEST (mesh_pattern_control_points,
"Paint mesh pattern with non default control points", "Paint mesh pattern with non default control points",
"mesh,pattern", /* keywords */ "mesh, pattern", /* keywords */
NULL, /* requirements */ NULL, /* requirements */
WIDTH, HEIGHT, WIDTH, HEIGHT,
NULL, draw) NULL, draw)

View file

@ -76,7 +76,7 @@ draw (cairo_t *cr, int width, int height)
CAIRO_TEST (mesh_pattern_fold, CAIRO_TEST (mesh_pattern_fold,
"Paint a mesh pattern with complex folds", "Paint a mesh pattern with complex folds",
"mesh,pattern", /* keywords */ "mesh, pattern", /* keywords */
NULL, /* requirements */ NULL, /* requirements */
WIDTH, HEIGHT, WIDTH, HEIGHT,
NULL, draw) NULL, draw)

View file

@ -70,7 +70,7 @@ draw (cairo_t *cr, int width, int height)
CAIRO_TEST (mesh_pattern_overlap, CAIRO_TEST (mesh_pattern_overlap,
"Paint a mesh pattern with a simple fold", "Paint a mesh pattern with a simple fold",
"mesh,pattern", /* keywords */ "mesh, pattern", /* keywords */
NULL, /* requirements */ NULL, /* requirements */
WIDTH, HEIGHT, WIDTH, HEIGHT,
NULL, draw) NULL, draw)

View file

@ -100,7 +100,7 @@ draw (cairo_t *cr, int width, int height)
CAIRO_TEST (mesh_pattern_transformed, CAIRO_TEST (mesh_pattern_transformed,
"Paint mesh pattern with a transformation", "Paint mesh pattern with a transformation",
"mesh,pattern", /* keywords */ "mesh, pattern", /* keywords */
NULL, /* requirements */ NULL, /* requirements */
WIDTH, HEIGHT, WIDTH, HEIGHT,
NULL, draw) NULL, draw)

View file

@ -88,7 +88,7 @@ draw (cairo_t *cr, int width, int height)
CAIRO_TEST (mesh_pattern, CAIRO_TEST (mesh_pattern,
"Paint mesh pattern", "Paint mesh pattern",
"mesh,pattern", /* keywords */ "mesh, pattern", /* keywords */
NULL, /* requirements */ NULL, /* requirements */
WIDTH, HEIGHT, WIDTH, HEIGHT,
NULL, draw) NULL, draw)

View file

@ -444,7 +444,7 @@ record_text_transform (cairo_t *cr, int width, int height)
CAIRO_TEST (record1414x_paint, CAIRO_TEST (record1414x_paint,
"Test replayed calls to cairo_paint", "Test replayed calls to cairo_paint",
"paint,record", /* keywords */ "paint, record", /* keywords */
NULL, /* requirements */ NULL, /* requirements */
M_SQRT2*8, M_SQRT2*8, M_SQRT2*8, M_SQRT2*8,
NULL, record_paint) NULL, record_paint)
@ -474,7 +474,7 @@ CAIRO_TEST (record1414x_paint_alpha_clip_mask,
NULL, record_paint_alpha_clip_mask) NULL, record_paint_alpha_clip_mask)
CAIRO_TEST (record1414x_fill_alpha, CAIRO_TEST (record1414x_fill_alpha,
"Tests using set_rgba();fill()", "Tests using set_rgba();fill()",
"record,fill, alpha", /* keywords */ "record, fill, alpha", /* keywords */
NULL, /* requirements */ NULL, /* requirements */
M_SQRT2*(2*SIZE + 4*PAD), M_SQRT2*(2*SIZE + 4*PAD), M_SQRT2*(2*SIZE + 4*PAD), M_SQRT2*(2*SIZE + 4*PAD),
NULL, record_fill_alpha) NULL, record_fill_alpha)