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