mirror of
https://salsa.debian.org/xorg-team/lib/pixman
synced 2025-09-02 12:15:01 +00:00

This places a heavier emphasis on solid images than the other fuzz testers, and tests both single-pixel repeating bitmap images as well as those created using pixman_image_create_solid_fill(). In the former case, it also exercises the case where the bitmap contents are written to after the image's first use, which is not a use-case that any other test has previously covered. [Pekka: added the default case to the switch in test_solid ().] Reviewed-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
54 lines
1.1 KiB
Makefile
54 lines
1.1 KiB
Makefile
# Tests (sorted by expected completion time)
|
|
TESTPROGRAMS = \
|
|
oob-test \
|
|
infinite-loop \
|
|
trap-crasher \
|
|
region-translate-test \
|
|
fetch-test \
|
|
a1-trap-test \
|
|
prng-test \
|
|
radial-invalid \
|
|
pdf-op-test \
|
|
region-test \
|
|
combiner-test \
|
|
scaling-crash-test \
|
|
alpha-loop \
|
|
scaling-helpers-test \
|
|
thread-test \
|
|
rotate-test \
|
|
alphamap \
|
|
gradient-crash-test \
|
|
pixel-test \
|
|
matrix-test \
|
|
composite-traps-test \
|
|
region-contains-test \
|
|
glyph-test \
|
|
solid-test \
|
|
stress-test \
|
|
blitters-test \
|
|
affine-test \
|
|
scaling-test \
|
|
composite \
|
|
tolerance-test \
|
|
$(NULL)
|
|
|
|
# Other programs
|
|
OTHERPROGRAMS = \
|
|
lowlevel-blt-bench \
|
|
radial-perf-test \
|
|
check-formats \
|
|
scaling-bench \
|
|
affine-bench \
|
|
$(NULL)
|
|
|
|
# Utility functions
|
|
libutils_sources = \
|
|
utils.c \
|
|
utils-prng.c \
|
|
$(NULL)
|
|
|
|
libutils_headers = \
|
|
utils.h \
|
|
utils-prng.h \
|
|
$(NULL)
|