Makefile.am revision d2ffc83c82f280d4a3279c8e2fdff826af8c54ce
1# Copyright 1999-2012 ImageMagick Studio LLC, a non-profit organization
2# dedicated to making software imaging solutions freely available.
3#
4# You may not use this file except in compliance with the License.
5# obtain a copy of the License at
6#
7#   http://www.imagemagick.org/script/license.php
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14#
15#  Makefile for the ImageMagick validation suite.
16
17TESTS_CHECK_PGRMS = \
18	tests/validate \
19	tests/drawtest \
20	tests/wandtest
21
22tests_validate_SOURCES = tests/validate.c tests/validate.h
23tests_validate_CPPFLAGS = $(AM_CPPFLAGS)
24tests_validate_LDADD = $(MAGICKCORE_LIBS) $(MAGICKWAND_LIBS) $(MATH_LIBS)
25
26tests_drawtest_SOURCES = tests/drawtest.c
27tests_drawtest_LDFLAGS = $(LDFLAGS)
28tests_drawtest_LDADD = $(MAGICKCORE_LIBS) $(MAGICKWAND_LIBS)
29
30tests_wandtest_SOURCES = tests/wandtest.c
31tests_wandtest_LDFLAGS = $(LDFLAGS)
32tests_wandtest_LDADD = $(MAGICKCORE_LIBS) $(MAGICKWAND_LIBS)
33
34TESTS_XFAIL_TESTS = 
35
36TESTS_TESTS = \
37	tests/validate-compare.tap \
38	tests/validate-composite.tap \
39	tests/validate-convert.tap \
40	tests/validate-identify.tap \
41	tests/validate-import.tap \
42	tests/validate-montage.tap \
43	tests/validate-pipe.tap \
44	tests/validate-colorspace.tap \
45	tests/validate-stream.tap \
46	tests/validate-formats-in-memory.tap \
47	tests/validate-formats-on-disk.tap \
48	tests/drawtest.tap \
49	tests/wandtest.tap
50
51TESTS_EXTRA_DIST = \
52	tests/common.shi \
53  tests/rose.pnm \
54  tests/input_256c.miff \
55  tests/input_bilevel.miff \
56  tests/input_gray.miff \
57  tests/input_truecolor.miff \
58  tests/sequence.miff \
59	$(TESTS_TESTS)
60
61TESTS_CLEANFILES = 
62	tests/*_out.*
63