blob: e323a8e8c9a63d2042db9281a78ce0ccbe112b3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Tests (sorted by expected completion time)
TESTPROGRAMS = \
prng-test \
a1-trap-test \
pdf-op-test \
region-test \
region-translate-test \
combiner-test \
fetch-test \
rotate-test \
oob-test \
infinite-loop \
trap-crasher \
alpha-loop \
scaling-crash-test \
scaling-helpers-test \
gradient-crash-test \
region-contains-test \
alphamap \
matrix-test \
stress-test \
composite-traps-test \
blitters-test \
glyph-test \
scaling-test \
affine-test \
composite \
$(NULL)
# Benchmarks
BENCHMARKS = \
lowlevel-blt-bench \
$(NULL)
# Utility functions
libutils_sources = \
utils.c \
utils-prng.c \
$(NULL)
libutils_headers = \
utils.h \
utils-prng.h \
$(NULL)
|