mirror of
https://salsa.debian.org/xorg-team/lib/pixman
synced 2025-09-04 08:22:14 +00:00

This new test tests a bunch of bilinear downscalings, where many have a transformation such that the BILINEAR filter can be reduced to NEAREST (and many don't). A CRC32 is computed for all the resulting images and compared to a known-good value for both 4-bit and 7-bit interpolation. V2: Remove leftover comment, some minor formatting fixes, use a timestamp as the PRNG seed. Signed-off-by: Søren Sandmann <soren.sandmann@gmail.com> Reviewed-by: Bill Spitzak <spitzak@gmail.com>
57 lines
1.2 KiB
Makefile
57 lines
1.2 KiB
Makefile
# Tests (sorted by expected completion time)
|
|
TESTPROGRAMS = \
|
|
oob-test \
|
|
infinite-loop \
|
|
trap-crasher \
|
|
fence-image-self-test \
|
|
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 \
|
|
filter-reduction-test \
|
|
composite-traps-test \
|
|
region-contains-test \
|
|
glyph-test \
|
|
solid-test \
|
|
stress-test \
|
|
cover-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)
|