]> git.0d.be Git - empathy.git/blob - tests/Makefile.am
Updated Czech translation
[empathy.git] / tests / Makefile.am
1 SUBDIRS = interactive xml
2
3 CLEANFILES=
4
5 SUPPRESSIONS=tp-glib.supp dlopen.supp
6
7 EXTRA_DIST =            \
8         test.manager    \
9         test.profile
10
11 AM_CPPFLAGS =                                           \
12         $(ERROR_CFLAGS)                                 \
13         -I$(top_srcdir)                                 \
14         -DPKGDATADIR=\""$(pkgdatadir)"\"                \
15         -DGCR_API_SUBJECT_TO_CHANGE                     \
16         $(EMPATHY_CFLAGS)                               \
17         $(WARN_CFLAGS)                                  \
18         $(DISABLE_DEPRECATED)                           \
19         $(NULL)
20
21 LDADD =                                                         \
22         $(top_builddir)/libempathy-gtk/libempathy-gtk.la        \
23         $(top_builddir)/libempathy/libempathy.la                \
24         $(EMPATHY_LIBS)                                         \
25         $(NULL)
26
27 TEST_PROGS =                                     \
28      empathy-irc-server-test                     \
29      empathy-irc-network-test                    \
30      empathy-irc-network-manager-test            \
31      empathy-chatroom-test                       \
32      empathy-chatroom-manager-test               \
33      empathy-parser-test                         \
34      empathy-live-search-test                    \
35      empathy-tls-test
36
37 empathy_tls_test_SOURCES = empathy-tls-test.c \
38      test-helper.c test-helper.h
39
40 empathy_irc_server_test_SOURCES = empathy-irc-server-test.c \
41      test-helper.c test-helper.h                       \
42      test-irc-helper.h test-irc-helper.c
43
44 empathy_irc_network_test_SOURCES = empathy-irc-network-test.c \
45      test-helper.c test-helper.h                       \
46      test-irc-helper.h test-irc-helper.c
47
48 empathy_irc_network_manager_test_SOURCES = empathy-irc-network-manager-test.c \
49      test-helper.c test-helper.h                       \
50      test-irc-helper.h test-irc-helper.c
51
52 empathy_chatroom_test_SOURCES = empathy-chatroom-test.c \
53      test-helper.c test-helper.h
54
55 empathy_chatroom_manager_test_SOURCES = empathy-chatroom-manager-test.c \
56      test-helper.c test-helper.h
57
58 empathy_parser_test_SOURCES = empathy-parser-test.c \
59      test-helper.c test-helper.h
60
61 empathy_live_search_test_SOURCES = empathy-live-search-test.c \
62      test-helper.c test-helper.h
63
64 check_PROGRAMS = $(TEST_PROGS)
65
66 TESTS_ENVIRONMENT = EMPATHY_SRCDIR=@abs_top_srcdir@ \
67                     MC_PROFILE_DIR=@abs_top_srcdir@/tests \
68                     MC_MANAGER_DIR=@abs_top_srcdir@/tests
69
70 test-report: test-report.xml
71         gtester-report $(top_builddir)/tests/$@.xml > \
72           $(top_builddir)/tests/$@.html
73
74 test-report.xml: ${TEST_PROGS} test
75
76 test: ${TEST_PROGS}
77         gtester -o test-report.xml -k --verbose ${TEST_PROGS}
78
79 test-%: empathy-%-test
80         gtester -o $@-report.xml -k --verbose $<
81
82 .PHONY: test test-report