1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
include $(top_srcdir)/Makefile.decl
noinst_PROGRAMS = $(TEST_PROGS)
TEST_PROGS += tests
tests_VALASOURCES = \
testarraylist.vala \
testarrayqueue.vala \
testbidirlist.vala \
testbidirsortedset.vala \
testbidirsortedmap.vala \
testcase.vala \
testcollection.vala \
testconcurrentlist.vala \
testconcurrentset.vala \
testdata.vala \
testdeque.vala \
testfunctions.vala \
testhashmap.vala \
testhashmultimap.vala \
testhashmultiset.vala \
testhashset.vala \
testlinkedlist.vala \
testlinkedlistasdeque.vala \
testlist.vala \
testmain.vala \
testmap.vala \
testmultimap.vala \
testmultiset.vala \
testpriorityqueue.vala \
testqueue.vala \
testreadonlybidirlist.vala \
testreadonlycollection.vala \
testreadonlylist.vala \
testreadonlymap.vala \
testreadonlyset.vala \
testset.vala \
testsortedset.vala \
testsortedmap.vala \
testtreemap.vala \
testtreemultimap.vala \
testtreemultiset.vala \
testtreeset.vala \
testunrolledlinkedlist.vala \
testunrolledlinkedlistasdeque.vala \
$(NULL)
tests_SOURCES = \
$(tests_VALASOURCES:.vala=.c) \
$(NULL)
tests_DEPENDENCIES = \
$(top_srcdir)/gee/gee-0.8.vapi \
tests_vala.stamp \
$(NULL)
tests_CFLAGS = \
-w \
$(NULL)
tests_CPPFLAGS = \
-I$(top_srcdir)/gee \
$(GLIB_CFLAGS) \
$(NULL)
tests_LDADD = \
$(GLIB_LIBS) ../gee/libgee-0.8.la \
$(NULL)
tests_VALAFLAGS = \
--basedir $(top_srcdir) \
--vapidir $(top_srcdir)/gee \
--pkg gee-0.8 --pkg posix \
$(VALAFLAGS) \
$(NULL)
tests_vala.stamp: $(tests_VALASOURCES)
$(AM_V_VALAC)$(VALAC) $(VALAFLAGS) $(tests_VALAFLAGS) -C $(tests_VALASOURCES)
@touch tests_vala.stamp
$(tests_VALASOURCES:.vala=.c): tests_vala.stamp
MOSTLYCLEANFILES = \
$(tests_VALASOURCES:.vala=.c) \
tests_vala.stamp \
$(NULL)
EXTRA_DIST += \
$(tests_VALASOURCES) \
tests_vala.stamp \
$(NULL)
coverage-reset:
lcov --base-directory=@top_srcdir@ --directory @top_srcdir@/gee --zerocounters
coverage-report:
lcov --directory @top_srcdir@/gee \
--capture \
--output-file @top_builddir@/lcov.info
lcov --directory @top_srcdir@/gee \
--output-file @top_builddir@/lcov.info \
--remove @top_builddir@/lcov.info \
"/usr/include/*" "*.c" "*.h" "*.vapi"
$(mkdir_p) @top_builddir@/tests/coverage
git_commit=`GIT_DIR=@top_srcdir@/.git git log -1 --pretty=format:%h 2>/dev/null`;\
genhtml --title "@PACKAGE_STRING@ $$git_commit" \
--output-directory @top_builddir@/tests/coverage @top_builddir@/lcov.info
@echo
@echo 'lcov report can be found in:'
@echo 'file://@abs_top_builddir@/tests/coverage/index.html'
@echo
clean-local:
-rm -rf coverage
.PHONY: coverage-report
|