summaryrefslogtreecommitdiff
path: root/tests/Makefile.am
blob: fc82f0165816f0b203c528fe99854881a98485ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
if WANT_TWISTED_TESTS
CHECKTWISTED = twisted
endif

SUBDIRS = $(CHECKTWISTED) suppressions

LDADD = \
	$(top_builddir)/telepathy-logger/libtelepathy-logger.la \
	$(TPL_LIBS)

noinst_PROGRAMS = \
	test-tpl-channel	\
	test-tpl-conf		\
	test-tpl-log-store-sqlite \
	test-tpl-log-manager	\
	test-tpl-observer	\
	test-searches		\
	$(NULL)

test_tpl_channel_SOURCES = \
	test-tpl-channel.c	\
	tpl-channel-test.c	\
	tpl-channel-test.h

test_tpl_observer_SOURCES = \
	test-tpl-observer.c	\
	tpl-channel-test.c

test_searches_SOURCES = \
	test-searches.c \
	constants.h

AM_CFLAGS = \
	$(ERROR_CFLAGS) \
	$(TPL_CFLAGS) \
	-I$(top_srcdir) \
	-I$(top_builddir)

TESTS = $(noinst_PROGRAMS)

TESTS_ENVIRONMENT = \
	G_DEBUG=fatal-warnings,fatal-criticals \
	TPL_TEST_MODE=true \
	$(NULL)

check-valgrind: $(TESTS)
	G_SLICE=always-malloc \
	G_DEBUG=gc-friendly \
	$(MAKE) \
		TESTS_ENVIRONMENT="$(TESTS_ENVIRONMENT) \
		libtool --mode=execute valgrind \
			--leak-check=full \
			--show-reachable=no \
			--gen-suppressions=all \
			--num-callers=20 \
			--suppressions=@abs_top_srcdir@/tests/suppressions/tpl.supp \
			--error-exitcode=1" \
		check-TESTS

check_c_sources = \
	$(dbus_test_sources)	\
	tpl-channel-test.c	\
	test-tpl-channel.c	\
	test-tpl-conf.c		\
	test-tpl-observer.c	\
	test-searches.c		\
	$(NULL)

include $(top_srcdir)/tools/check-coding-style.mk
check-local: check-coding-style