ignore split strings warnings
[psensor.git] / tests / Makefile.am
1 check-local: checkpatch.pl
2         find $(top_srcdir)/src -name \*.c -exec $(srcdir)/checkpatch.pl --ignore SPLIT_STRING --show-types -q --no-tree  -emacs -f {} \;
3         find $(top_srcdir)/src -name \*.h -exec $(srcdir)/checkpatch.pl --ignore SPLIT_STRING --show-types -q --no-tree  -emacs -f {} \;
4
5 EXTRA_DIST = checkpatch.pl data test-io-dir-list.sh
6
7 check_PROGRAMS = test-io-dir-list \
8         test-url-encode \
9         test-url-normalize
10
11 AM_CPPFLAGS = -pedantic -Werror
12
13 test_url_encode_SOURCES = test_url_encode.c
14 test_url_encode_LDADD = ../src/lib/libpsensor.a
15
16 test_url_normalize_SOURCES = test_url_normalize.c
17 test_url_normalize_LDADD = ../src/lib/libpsensor.a
18
19 test_io_dir_list_SOURCES = test_io_dir_list.c
20 test_io_dir_list_LDADD = ../src/lib/libpsensor.a
21
22 TESTS = test-url-encode \
23         test-url-normalize \
24         test-io-dir-list.sh