4ff14fa20b36cc842e5759b5a694769bf1bae794
[platform/upstream/harfbuzz.git] / test / api / 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 = -DSRCDIR="\"$(srcdir)\"" -I$(top_srcdir)/src/ -I$(top_builddir)/src/ $(GLIB_CFLAGS)
11 LDADD = $(top_builddir)/src/libharfbuzz.la $(GLIB_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-set \
25         test-shape \
26         test-unicode \
27         test-version \
28         $(NULL)
29
30 test_unicode_CPPFLAGS = $(AM_CPPFLAGS)
31 test_unicode_LDADD = $(LDADD)
32 if HAVE_GLIB
33 test_unicode_CPPFLAGS += $(GLIB_CFLAGS)
34 endif
35 if HAVE_ICU
36 test_unicode_CPPFLAGS += $(ICU_CFLAGS)
37 test_unicode_LDADD += $(top_builddir)/src/libharfbuzz-icu.la
38 endif
39
40
41 if HAVE_OT
42 TEST_PROGS += \
43         test-ot-tag \
44         $(NULL)
45 endif
46
47 # Tests for header compilation
48 TEST_PROGS += \
49         test-c \
50         test-cplusplus \
51         $(NULL)
52 test_cplusplus_SOURCES = test-cplusplus.cc
53 test_c_CPPFLAGS = $(AM_CPPFLAGS)
54 test_cplusplus_CPPFLAGS = $(AM_CPPFLAGS)
55 if HAVE_ICU
56 test_c_CPPFLAGS += $(ICU_CFLAGS)
57 test_cplusplus_CPPFLAGS += $(ICU_CFLAGS)
58 endif
59 if HAVE_FREETYPE
60 test_c_CPPFLAGS += $(FREETYPE_CFLAGS)
61 test_cplusplus_CPPFLAGS += $(FREETYPE_CFLAGS)
62 endif
63
64 # Default test running environment
65 TESTS = $(TEST_PROGS)
66 TESTS_ENVIRONMENT = \
67         MALLOC_CHECK_=2 \
68         MALLOC_PERTURB_=$$(($${RANDOM:-256} % 256)) \
69         G_DEBUG=gc-friendly \
70         G_SLICE=always-malloc \
71         srcdir=$(srcdir) \
72         $(NULL)
73
74
75 # check-tool: Run tests under $(TOOL)
76 check-tool:
77         $(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) check \
78         TESTS_ENVIRONMENT='$(TESTS_ENVIRONMENT) $(top_builddir)/libtool --mode=execute \
79         env $(TOOL)'
80 # check-tool-raw: Run tests under $(TOOL), but don't run under libtool
81 check-tool-raw:
82         $(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) check \
83         TESTS_ENVIRONMENT='$(TESTS_ENVIRONMENT) \
84         env $(TOOL)'
85
86 # check-gtester: Run tests under gtester
87 GTESTER = gtester
88 check-gtester:
89         $(AM_V_at)$(MAKE) $(AM_MAKEFLGS) check-tool-raw TOOL="$(GTESTER) --verbose --keep-going"
90
91
92 # Check tests under valgrind.  Saves log to log-valgrind.txt
93 VALGRIND_FLAGS = \
94         --tool=memcheck --suppressions=$(srcdir)/.valgrind-suppressions \
95         --track-origins=yes \
96         --leak-check=yes
97         $(EXTRA_VALGRIND_FLAGS)
98 #       Can't do for now: --show-reachable=yes
99 CLEANFILES +=  log-valgrind.txt
100 valgrind_verbose = $(valgrind_verbose_@AM_V@)
101 valgrind_verbose_ = $(valgrind_verbose_@AM_DEFAULT_V@)
102 valgrind_verbose_0 = | \
103         grep '\(^[^=]\|ERROR SUMMARY\|definitely lost\|indirectly lost\)' | grep -v ': 0'
104 # TODO: The following check does not fail if valgrind finds error.  It should.
105 check-valgrind:
106         $(AM_V_at)$(MAKE) $(AM_MAKEFLGS) check-tool TOOL="valgrind $(VALGRIND_FLAGS)" \
107         2>&1 | tee log-valgrind.txt $(valgrind_verbose)
108
109
110 # check-symbols: Finds untested API symbols
111 symbols-tested.txt: $(TEST_PROGS)
112         $(AM_V_GEN)$(top_builddir)/libtool --mode=execute nm $^ \
113         | grep ' U hb_' | sed 's/.* U hb_/hb_/' \
114         | sort | uniq > $@.tmp && mv $@.tmp $@
115 symbols-exported.txt: $(top_builddir)/src/.libs/libharfbuzz.so
116         $(AM_V_GEN)$(top_builddir)/libtool --mode=execute nm $^ \
117         | grep ' T ' | sed 's/.* T //' | grep -v '^\(_init\|_fini\)$$' \
118         | sort | uniq > $@.tmp && mv $@.tmp $@
119 symbols-untested.txt: symbols-tested.txt symbols-exported.txt
120         $(AM_V_GEN)diff $^ > $@.tmp; mv $@.tmp $@
121 CLEANFILES += symbols-tested.txt symbols-exported.txt symbols-untested.txt
122 check-symbols: symbols-untested.txt
123         @! cat $^ | grep .
124
125
126
127 else
128 check-am: err-glib
129 err-glib:
130         @echo "You need to have glib support enabled to run the tests"
131         @exit 77
132 endif
133
134 .PHONY: check-symbols check-tool check-valgrind
135
136 -include $(top_srcdir)/git.mk