blob: ee75f052f3b43eb55f9182ffafdae8f514c08f5e (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# $NetBSD: Makefile,v 1.2 2022/11/13 21:57:12 mrg Exp $
NOINSTALL=1
NOMAN=1
.include <bsd.own.mk>
PROGS= \
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
ADDSRCS+= utils.c utils-prng.c
.for _p in ${PROGS}
SRCS.${_p}= ${_p}.c ${ADDSRCS}
.endfor
CPPFLAGS+= -I${X11SRCDIR.pixman}/pixman
LDFLAGS+= -lpthread
LDADD+= -lpixman-1
.include "../Makefile.cflags"
.PATH: ${X11SRCDIR.pixman}/test
check:
.for test in ${PROGS}
echo -n "Starting ${test}: "; date
./${test} && echo Passed: ${test}
.endfor
echo -n "Done: "; date
.include <bsd.x11.mk>
.include <bsd.prog.mk>
|