[test] Rename test-symbols to check-symbols
[apps/home/video-player.git] / test / Makefile.am
1 # Process this file with automake to produce Makefile.in
2
3 NULL =
4 EXTRA_DIST =
5 CLEANFILES =
6 DISTCLEANFILES =
7 MAINTAINERCLEANFILES =
8
9 if HAVE_GLIB
10 AM_CPPFLAGS = -I$(top_srcdir)/src/ $(GLIB_CFLAGS) $(GTHREAD_CFLAGS)
11 LDADD = $(top_builddir)/src/libharfbuzz.la $(GLIB_LIBS) $(GTHREAD_LIBS)
12
13 EXTRA_DIST += hb-test.h
14
15 check_PROGRAMS = $(TEST_PROGS)
16 noinst_PROGRAMS = $(TEST_PROGS)
17
18 TEST_PROGS = \
19         test-blob \
20         test-buffer \
21         test-common \
22         test-font \
23         test-object \
24         test-shape \
25         test-unicode \
26         test-version \
27         $(NULL)
28
29 TEST_PROGS += \
30         test-ot-tag \
31         $(NULL)
32
33 # Tests for header compilation
34 TEST_PROGS += \
35         test-c \
36         test-cplusplus \
37         $(NULL)
38 test_cplusplus_SOURCES = test-cplusplus.cc
39 test_c_CPPFLAGS = $(AM_CPPFLAGS)
40 test_cplusplus_CPPFLAGS = $(AM_CPPFLAGS)
41 if HAVE_ICU
42 test_c_CPPFLAGS += $(ICU_CFLAGS)
43 test_cplusplus_CPPFLAGS += $(ICU_CFLAGS)
44 endif
45 if HAVE_FREETYPE
46 test_c_CPPFLAGS += $(FREETYPE_CFLAGS)
47 test_cplusplus_CPPFLAGS += $(FREETYPE_CFLAGS)
48 # TODO replace freetype with other stuff in the following test
49 test_object_CPPFLAGS = $(AM_CPPFLAGS) $(FREETYPE_CFLAGS)
50 test_object_LIBS = $(LDADD) $(FREETYPE_LIBS)
51 endif
52
53
54 # Default test running environment
55 TESTS = $(TEST_PROGS)
56 TESTS_ENVIRONMENT = \
57         MALLOC_CHECK_=2 \
58         MALLOC_PERTURB_=$$(($${RANDOM:-256} % 256)) \
59         G_DEBUG=gc-friendly \
60         G_SLICE=always-malloc \
61         $(ENV)
62
63
64 # check-tool: Run tests under $(TOOL)
65 check-tool:
66         $(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) check \
67         TESTS_ENVIRONMENT='$(TESTS_ENVIRONMENT) $(top_builddir)/libtool --mode=execute \
68         env $(TOOL)'
69 # check-tool-raw: Run tests under $(TOOL), but don't run under libtool
70 check-tool-raw:
71         $(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) check \
72         TESTS_ENVIRONMENT='$(TESTS_ENVIRONMENT) \
73         env $(TOOL)'
74
75 # check-gtester: Run tests under gtester
76 GTESTER = gtester
77 check-gtester:
78         $(AM_V_at)$(MAKE) $(AM_MAKEFLGS) check-tool-raw TOOL="$(GTESTER) --verbose"
79
80
81 # Check tests under valgrind.  Saves log to valgrind-log
82 VALGRIND_FLAGS = \
83         --tool=memcheck --suppressions=$(srcdir)/.valgrind-suppressions \
84         --track-origins=yes \
85         --leak-check=yes
86         $(EXTRA_VALGRIND_FLAGS)
87 #       Can't do for now: --show-reachable=yes
88 CLEANFILES +=  valgrind-log
89 valgrind_verbose = $(valgrind_verbose_$(V))
90 valgrind_verbose_ = $(valgrind_verbose_$(AM_DEFAULT_VERBOSITY))
91 valgrind_verbose_0 = | \
92         grep '\(^[^=]\|ERROR SUMMARY\|definitely lost\|indirectly lost\)' | grep -v ': 0'
93 # TODO: The following check does not fail if valgrind finds error.  It should.
94 check-valgrind:
95         $(AM_V_at)$(MAKE) $(AM_MAKEFLGS) check-tool TOOL="valgrind $(VALGRIND_FLAGS)" \
96         2>&1 | tee valgrind-log $(valgrind_verbose)
97
98
99 # check-symbols: Finds untested API symbols
100 symbols-tested.txt: $(TEST_PROGS)
101         $(AM_V_GEN)$(top_builddir)/libtool --mode=execute nm $^ \
102         | grep ' U hb_' | sed 's/.* U hb_/hb_/' \
103         | sort | uniq > $@.tmp && mv $@.tmp $@
104 symbols-exported.txt: $(top_builddir)/src/.libs/libharfbuzz.so
105         $(AM_V_GEN)$(top_builddir)/libtool --mode=execute nm $^ \
106         | grep ' T ' | sed 's/.* T //' | grep -v '^\(_init\|_fini\)$$' \
107         | sort | uniq > $@.tmp && mv $@.tmp $@
108 symbols-untested.txt: symbols-tested.txt symbols-exported.txt
109         $(AM_V_GEN)diff $^ > $@.tmp; mv $@.tmp $@
110 CLEANFILES += symbols-tested.txt symbols-exported.txt symbols-untested.txt
111 check-symbols: symbols-untested.txt
112         @! cat $^ | grep .
113
114
115
116 else
117 check-am:
118         @echo "You need to have glib support enabled to run the tests"
119         @exit 77
120 endif
121
122 .PHONY: check-symbols check-tool check-valgrind
123
124 -include $(top_srcdir)/git.mk