test: Re-enable pass-through

The pass-through test was not updated to the current test conventions
and was not enabled in the Makefiles.
This commit is contained in:
Andrea Canciani 2011-10-26 17:16:06 +02:00
parent c8b5d270f6
commit 97b219a5e7
2 changed files with 7 additions and 14 deletions

View file

@ -228,6 +228,7 @@ test_sources = \
paint-with-alpha.c \
partial-clip-text.c \
partial-coverage.c \
pass-through.c \
path-append.c \
path-stroke-twice.c \
path-precision.c \

View file

@ -25,15 +25,6 @@
#include "cairo-test.h"
static cairo_test_draw_function_t draw;
static const cairo_test_t test = {
"pass-through",
"Tests pixel values",
16, 256,
draw
};
static cairo_test_status_t
draw (cairo_t *cr, int width, int height)
{
@ -92,8 +83,9 @@ draw (cairo_t *cr, int width, int height)
return CAIRO_TEST_SUCCESS;
}
int
main (void)
{
return cairo_test (&test);
}
CAIRO_TEST (pass_through,
"tests pixel values",
"color", /* keywords */
NULL, /* requirements */
16, 256,
NULL, draw)