Add a test program for pixman_composite_trapezoids().
[profile/ivi/pixman.git] / test / Makefile.am
1 AM_CFLAGS = @OPENMP_CFLAGS@
2 AM_LDFLAGS = @OPENMP_CFLAGS@ @TESTPROGS_EXTRA_LDFLAGS@
3 LDADD = $(top_builddir)/pixman/libpixman-1.la -lm
4 INCLUDES = -I$(top_srcdir)/pixman -I$(top_builddir)/pixman
5
6 TESTPROGRAMS =                  \
7         a1-trap-test            \
8         pdf-op-test             \
9         region-test             \
10         region-translate-test   \
11         fetch-test              \
12         oob-test                \
13         trap-crasher            \
14         alpha-loop              \
15         scaling-crash-test      \
16         gradient-crash-test     \
17         alphamap                \
18         stress-test             \
19         composite-traps-test    \
20         blitters-test           \
21         scaling-test            \
22         affine-test             \
23         composite
24
25 pdf_op_test_SOURCES = pdf-op-test.c utils.c utils.h
26 region_test_SOURCES = region-test.c utils.c utils.h
27 blitters_test_SOURCES = blitters-test.c utils.c utils.h
28 composite_traps_test_SOURCES = composite-traps-test.c utils.c utils.h
29 scaling_test_SOURCES = scaling-test.c utils.c utils.h
30 affine_test_SOURCES = affine-test.c utils.c utils.h
31 alphamap_SOURCES = alphamap.c utils.c utils.h
32 alpha_loop_SOURCES = alpha-loop.c utils.c utils.h
33 composite_SOURCES = composite.c utils.c utils.h
34 gradient_crash_test_SOURCES = gradient-crash-test.c utils.c utils.h
35 stress_test_SOURCES = stress-test.c utils.c utils.h
36
37 # Benchmarks
38
39 BENCHMARKS =                    \
40         lowlevel-blt-bench
41
42 lowlevel_blt_bench_SOURCES = lowlevel-blt-bench.c utils.c utils.h
43
44 noinst_PROGRAMS = $(TESTPROGRAMS) $(BENCHMARKS)
45
46 TESTS = $(TESTPROGRAMS)