chiark / gitweb /
Merge branch 'master' of git.distorted.org.uk:~mdw/publish/public-git/disorder
[disorder] / libtests / Makefile.am
CommitLineData
7affb407
RK
1#
2# This file is part of DisOrder.
8a886602 3# Copyright (C) 2008-2012 Richard Kettlewell
7affb407 4#
e7eb3a27 5# This program is free software: you can redistribute it and/or modify
7affb407 6# it under the terms of the GNU General Public License as published by
e7eb3a27 7# the Free Software Foundation, either version 3 of the License, or
7affb407
RK
8# (at your option) any later version.
9#
e7eb3a27
RK
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
7affb407 15# You should have received a copy of the GNU General Public License
e7eb3a27 16# along with this program. If not, see <http://www.gnu.org/licenses/>.
7affb407
RK
17#
18
ed8e4373 19TESTS=t-addr t-basen t-bits t-cache t-casefold t-charset \
7affb407
RK
20 t-cookies t-dateparse t-event t-filepart t-hash t-heap t-hex \
21 t-kvp t-mime t-printf t-regsub t-selection t-signame t-sink \
22 t-split t-syscalls t-trackname t-unicode t-url t-utf8 t-vector \
2a1c84fb 23 t-words t-wstat t-macros t-cgi t-eventdist t-resample \
ed8e4373 24 t-configuration t-timeval t-salsa208
7affb407
RK
25
26noinst_PROGRAMS=$(TESTS)
27
28AM_CPPFLAGS=-I${top_srcdir}/lib -I../lib
29LDADD=../lib/libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC)
30
31t_addr_SOURCES=t-addr.c test.c test.h
7affb407
RK
32t_basen_SOURCES=t-basen.c test.c test.h
33t_bits_SOURCES=t-bits.c test.c test.h
34t_cache_SOURCES=t-cache.c test.c test.h
35t_casefold_SOURCES=t-casefold.c test.c test.h
36t_charset_SOURCES=t-charset.c test.c test.h
37t_cgi_SOURCES=t-cgi.c test.c test.h
38t_cookies_SOURCES=t-cookies.c test.c test.h
39t_dateparse_SOURCES=t-dateparse.c test.c test.h
40t_event_SOURCES=t-event.c test.c test.h
41t_filepart_SOURCES=t-filepart.c test.c test.h
42t_hash_SOURCES=t-hash.c test.c test.h
43t_heap_SOURCES=t-heap.c test.c test.h
44t_hex_SOURCES=t-hex.c test.c test.h
45t_kvp_SOURCES=t-kvp.c test.c test.h
46t_macros_SOURCES=t-macros.c test.c test.h
47t_mime_SOURCES=t-mime.c test.c test.h
48t_printf_SOURCES=t-printf.c test.c test.h
79c7495d 49t_printf_CFLAGS=$(AM_CFLAGS) -Wno-format-security
7affb407
RK
50t_regsub_SOURCES=t-regsub.c test.c test.h
51t_selection_SOURCES=t-selection.c test.c test.h
52t_signame_SOURCES=t-signame.c test.c test.h
53t_sink_SOURCES=t-sink.c test.c test.h
54t_split_SOURCES=t-split.c test.c test.h
55t_syscalls_SOURCES=t-syscalls.c test.c test.h
56t_trackname_SOURCES=t-trackname.c test.c test.h
57t_unicode_SOURCES=t-unicode.c test.c test.h
34fb8c61 58t_unicode_CFLAGS=$(AM_CFLAGS) -DSRCDIR=\"$(srcdir)\"
7affb407
RK
59t_url_SOURCES=t-url.c test.c test.h
60t_utf8_SOURCES=t-utf8.c test.c test.h
61t_vector_SOURCES=t-vector.c test.c test.h
62t_words_SOURCES=t-words.c test.c test.h
63t_wstat_SOURCES=t-wstat.c test.c test.h
eb5e0673 64t_eventdist_SOURCES=t-eventdist.c test.c test.h
0024bde0 65t_resample_SOURCES=t-resample.c test.c test.h
0a066775 66t_resample_LDADD=$(LDADD) $(LIBSAMPLERATE)
2a1c84fb 67t_configuration_SOURCES=t-configuration.c test.c test.h
0a066775 68t_configuration_LDADD=$(LDADD) $(LIBGCRYPT)
b2516a07 69t_timeval_SOURCES=t-timeval.c test.c test.h
ed8e4373 70t_salsa208_SOURCES=t-salsa208.c test.c test.h
7affb407
RK
71
72check-report: before-check check make-coverage-reports
73before-check:
74 rm -f *.gcda *.gcov
5d0998a0 75make-coverage-reports: check
d6087dc8 76 cd ../lib && ${GCOV} *.c | ${PYTHON} ../scripts/format-gcov-report --html . *.c
7affb407 77
34fb8c61
MW
78UNICODE_TEST_FILES=GraphemeBreakTest NormalizationTest WordBreakTest
79UNICODE_TEST_BASE_URL=http://www.unicode.org/Public/6.0.0/ucd/
80GraphemeBreakTest_URL=$(UNICODE_TEST_BASE_URL)/auxiliary/GraphemeBreakTest.txt
81NormalizationTest_URL=$(UNICODE_TEST_BASE_URL)/NormalizationTest.txt
82WordBreakTest_URL=$(UNICODE_TEST_BASE_URL)/auxiliary/WordBreakTest.txt
83update-unicode-tests:
84 set -e; \
85 for t in $(foreach t,$(UNICODE_TEST_FILES),$t:$($t_URL)); do \
86 f=$${t%%:*} u=$${t#*:}; \
87 echo $$f $$u; \
88 rm -f $$f.new $$f.new.gz; wget -O$$f.new $$u; \
89 gzip -9cv $$f.new >$$f.new.gz; \
90 mv -f $$f.new.gz $(srcdir)/$$f.txt.gz; rm -f $$f.new; \
91 done
4ba9806f 92
34fb8c61
MW
93EXTRA_DIST=t-macros-1.tmpl t-macros-2 \
94 COPYING.unicode-tests $(addsuffix .txt.gz, $(UNICODE_TEST_FILES))
3943e9ec 95
34fb8c61 96CLEANFILES=*.gcda *.gcov *.gcno *.c.html index.html