This repository was archived by the owner on Aug 7, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed
Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 1313bspatch
1414compile
1515configure
16+ coverage /
1617depcomp
1718install-sh
1819libbsdiff.la
@@ -21,6 +22,8 @@ ltmain.sh
2122m4 /
2223missing
2324src /.dirstamp
25+ src /* .gcda
26+ src /* .gcno
2427stamp-h1
2528bsdiff- * .tar.xz
2629test /* .diff
Original file line number Diff line number Diff line change @@ -28,11 +28,15 @@ EXTRA_DIST = \
2828AUTOMAKE_OPTIONS = color-tests parallel-tests
2929
3030if COVERAGE
31- coverage :
31+ AM_CFLAGS += --coverage
32+
33+ coverage : coverage-clean
3234 mkdir -p coverage
3335 lcov --compat-libtool --directory . --capture --output-file coverage/report
3436 genhtml -o coverage/ coverage/report
35- AM_CFLAGS += --coverage
37+
38+ coverage-clean :
39+ rm -rf coverage
3640endif
3741
3842bin_PROGRAMS = \
@@ -98,7 +102,10 @@ distclean-local:
98102install-exec-hook :
99103 perl findstatic.pl * /* .o | grep -v Checking || :
100104
101- check_PROGRAMS =
105+ TEST_EXTENSIONS = .sh
106+ TESTS = $(dist_check_SCRIPTS )
107+ dist_check_SCRIPTS = \
108+ test/run.sh
102109
103110release :
104111 @git rev-parse v$(PACKAGE_VERSION ) & > /dev/null; \
You can’t perform that action at this time.
0 commit comments