]> git.0d.be Git - empathy.git/blob - tests/Makefile.am
Updated Galician translations
[empathy.git] / tests / Makefile.am
1 SUBDIRS = interactive xml
2
3 CLEANFILES=
4
5 SUPPRESSIONS=valgrind.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         $(EMPATHY_CFLAGS)                               \
16         $(WARN_CFLAGS)                                  \
17         $(DISABLE_DEPRECATED)
18
19 LDADD =                                                         \
20         $(top_builddir)/libempathy-gtk/libempathy-gtk.la        \
21         $(top_builddir)/libempathy/libempathy.la                \
22         $(EMPATHY_LIBS)
23
24 TEST_PROGS =                                     \
25      empathy-utils-test                          \
26      empathy-irc-server-test                     \
27      empathy-irc-network-test                    \
28      empathy-irc-network-manager-test            \
29      empathy-chatroom-test                       \
30      empathy-chatroom-manager-test               \
31      empathy-parser-test                         \
32      empathy-live-search-test
33
34 empathy_utils_test_SOURCES = empathy-utils-test.c \
35      test-helper.c test-helper.h
36
37 empathy_irc_server_test_SOURCES = empathy-irc-server-test.c \
38      test-helper.c test-helper.h                       \
39      test-irc-helper.h test-irc-helper.c
40
41 empathy_irc_network_test_SOURCES = empathy-irc-network-test.c \
42      test-helper.c test-helper.h                       \
43      test-irc-helper.h test-irc-helper.c
44
45 empathy_irc_network_manager_test_SOURCES = empathy-irc-network-manager-test.c \
46      test-helper.c test-helper.h                       \
47      test-irc-helper.h test-irc-helper.c
48
49 empathy_chatroom_test_SOURCES = empathy-chatroom-test.c \
50      test-helper.c test-helper.h
51
52 empathy_chatroom_manager_test_SOURCES = empathy-chatroom-manager-test.c \
53      test-helper.c test-helper.h
54
55 empathy_parser_test_SOURCES = empathy-parser-test.c \
56      test-helper.c test-helper.h
57
58 empathy_live_search_test_SOURCES = empathy-live-search-test.c \
59      test-helper.c test-helper.h
60
61 check_PROGRAMS = $(TEST_PROGS)
62
63 TESTS_ENVIRONMENT = EMPATHY_SRCDIR=@abs_top_srcdir@ \
64                     MC_PROFILE_DIR=@abs_top_srcdir@/tests \
65                     MC_MANAGER_DIR=@abs_top_srcdir@/tests
66
67 test-report: test-report.xml
68         gtester-report $(top_builddir)/tests/$@.xml > \
69           $(top_builddir)/tests/$@.html
70
71 test-report.xml: ${TEST_PROGS} test
72
73 test: ${TEST_PROGS}
74         gtester -o test-report.xml -k --verbose ${TEST_PROGS}
75
76 test-%: empathy-%-test
77         gtester -o $@-report.xml -k --verbose $<
78
79 .PHONY: test test-report