-
Notifications
You must be signed in to change notification settings - Fork 146
/
Makefile
54 lines (40 loc) · 1.31 KB
/
Makefile
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
BUILDTYPE ?= Release
GCOV_OUT = build/reports/coverage/cpp
NCOV_OUT = build/reports/coverage
TEST_OPTIONS=
ifdef PULSE_BUILD_NUMBER
TEST_OPTIONS= --ascii --verbose
endif
all: bindings
bindings:
$(MAKE) -C build BUILDTYPE=$(BUILDTYPE)
test: bindings
node --expose_gc utils/testrun $(TEST_OPTIONS)
coverage:
$(MAKE) coverage_run BUILDTYPE=Coverage
coverage_build:
$(MAKE) -C build BUILDTYPE=Coverage
jscoverage:
jscoverage -v --no-highlight lib/ build/Coverage/lib
coverage_run: coverage_build jscoverage
lcov -d build/$(BUILDTYPE)/obj.target/dns_sd_bindings/src --zerocounters
mkdir -p $(GCOV_OUT)/html;
NCOV_OUT=$(NCOV_OUT) node --expose_gc utils/testrun $(TEST_OPTIONS)
lcov --base-directory build \
--directory build/$(BUILDTYPE)/obj.target/dns_sd_bindings/src \
--output-file $(GCOV_OUT)/testrun_all.info \
--capture
utils/ncov
lcov --output-file $(GCOV_OUT)/testrun.info \
--extract \
$(GCOV_OUT)/testrun_all.info "$(abspath .)/*" \
| tee $(GCOV_OUT)/lcov.log
genhtml --output-directory $(GCOV_OUT)/html \
--demangle-cpp \
$(GCOV_OUT)/testrun.info
tail -n 3 $(GCOV_OUT)/lcov.log | utils/coverage > $(GCOV_OUT)/coverage.properties
doc:
utils/docpack
website:
echo TODO
.PHONY: test citest coverage coverage_build coverage_run bindings jscoverage doc website