test: check correctness of 'bilinear_pad_repeat_get_scanline_bounds'
[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         scaling-helpers-test    \
17         gradient-crash-test     \
18         alphamap                \
19         stress-test             \
20         composite-traps-test    \
21         blitters-test           \
22         scaling-test            \
23         affine-test             \
24         composite
25
26 pdf_op_test_SOURCES = pdf-op-test.c utils.c utils.h
27 region_test_SOURCES = region-test.c utils.c utils.h
28 blitters_test_SOURCES = blitters-test.c utils.c utils.h
29 composite_traps_test_SOURCES = composite-traps-test.c utils.c utils.h
30 scaling_test_SOURCES = scaling-test.c utils.c utils.h
31 affine_test_SOURCES = affine-test.c utils.c utils.h
32 alphamap_SOURCES = alphamap.c utils.c utils.h
33 alpha_loop_SOURCES = alpha-loop.c utils.c utils.h
34 composite_SOURCES = composite.c utils.c utils.h
35 gradient_crash_test_SOURCES = gradient-crash-test.c utils.c utils.h
36 stress_test_SOURCES = stress-test.c utils.c utils.h
37 scaling_helpers_test_SOURCES = scaling-helpers-test.c utils.c utils.h
38
39 # Benchmarks
40
41 BENCHMARKS =                    \
42         lowlevel-blt-bench
43
44 lowlevel_blt_bench_SOURCES = lowlevel-blt-bench.c utils.c utils.h
45
46 noinst_PROGRAMS = $(TESTPROGRAMS) $(BENCHMARKS)
47
48 TESTS = $(TESTPROGRAMS)