Enhance the tests for the ReadOnly* implementations
[platform/upstream/libgee.git] / tests / Makefile.am
1 include $(top_srcdir)/Makefile.decl
2
3 NULL =
4
5 AM_CPPFLAGS = \
6         -I$(top_srcdir)/gee \
7         $(GLIB_CFLAGS) \
8         $(NULL)
9
10 noinst_PROGRAMS = $(TEST_PROGS)
11
12 progs_ldadd = $(GLIB_LIBS) ../gee/libgee.la
13
14 BUILT_SOURCES = tests.vala.stamp
15
16 TEST_PROGS += tests
17 tests_VALASOURCES = \
18        testarraylist.vala \
19        testcase.vala \
20        testcollection.vala \
21        testcomparable.vala \
22        testdeque.vala \
23        testhashmap.vala \
24        testhashmultimap.vala \
25        testhashmultiset.vala \
26        testhashset.vala \
27        testlinkedlist.vala \
28        testlinkedlistasdeque.vala \
29        testlist.vala \
30        testmain.vala \
31        testmap.vala \
32        testmultimap.vala \
33        testmultiset.vala \
34        testpriorityqueue.vala \
35        testqueue.vala \
36        testreadonlycollection.vala \
37        testreadonlylist.vala \
38        testreadonlymap.vala \
39        testreadonlyset.vala \
40        testset.vala \
41        testtreemap.vala \
42        testtreeset.vala \
43        $(NULL)
44
45 tests_DEPENDENCIES = $(top_srcdir)/gee/gee-1.0.vapi
46
47 tests_SOURCES = tests.vala.stamp $(tests_VALASOURCES:.vala=.c)
48 tests.vala.stamp: $(tests_VALASOURCES)
49         $(VALAC) -C --basedir $(top_srcdir) --vapidir $(top_srcdir)/gee --pkg gee-1.0 $^
50         touch $@
51 tests_LDADD = $(progs_ldadd)
52 EXTRA_DIST += $(tests_VALASOURCES)
53
54 coverage-reset:
55         lcov --base-directory=@top_srcdir@ --directory @top_srcdir@/gee --zerocounters
56
57 coverage-report:
58         lcov --directory @top_srcdir@/gee \
59                 --capture \
60                 --output-file @top_builddir@/lcov.info
61
62         lcov --directory @top_srcdir@/gee \
63                 --output-file @top_builddir@/lcov.info \
64                 --remove @top_builddir@/lcov.info \
65                 /usr/include/\*
66
67         $(mkdir_p) @top_builddir@/tests/coverage
68         git_commit=`GIT_DIR=@top_srcdir@/.git git log -1 --pretty=format:%h 2>/dev/null`;\
69         genhtml --title "@PACKAGE_STRING@ $$git_commit" \
70                 --output-directory @top_builddir@/tests/coverage @top_builddir@/lcov.info
71         @echo
72         @echo 'lcov report can be found in:'
73         @echo 'file://@abs_top_builddir@/tests/coverage/index.html'
74         @echo
75
76 clean-local:
77         -rm -rf coverage
78
79 .PHONY: coverage-report