diff --git a/ChangeLog b/ChangeLog index 4446a1c4..ef89d11c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,5 @@ +fwknop-2.6.9 (01//2016): + fwknop-2.6.8 (12/23/2015): - [server] Added a major new feature that allows fwknopd to easily integrate with third-party devices and software. This done through the diff --git a/test/gen-coverage-report.sh b/test/gen-coverage-report.sh index cee1586a..55eb5056 100755 --- a/test/gen-coverage-report.sh +++ b/test/gen-coverage-report.sh @@ -5,8 +5,8 @@ cd .. lcov $LCOV_RC_BC --no-checksum --capture --directory . --output-file $LCOV_INFO -lcov $LCOV_RC_BC --no-checksum -a $LCOV_BASE -a $LCOV_INFO --output-file $LCOV_INFO_FINAL -lcov $LCOV_RC_BC --no-checksum -r $LCOV_INFO /usr/include/\* --output-file $LCOV_INFO_FINAL +lcov $LCOV_RC_BC --no-checksum -a $LCOV_BASE -a $LCOV_INFO --output-file $LCOV_INFO_TMP +lcov $LCOV_RC_BC --no-checksum -r $LCOV_INFO_TMP /usr/include/\* --output-file $LCOV_INFO_FINAL genhtml $GENHTML_USE_BC --output-directory $LCOV_RESULTS_DIR --branch-coverage $LCOV_INFO_FINAL cd $TOP_DIR diff --git a/test/lcov.env b/test/lcov.env index 4f893aa3..b1cf1be4 100644 --- a/test/lcov.env +++ b/test/lcov.env @@ -1,6 +1,7 @@ TOP_DIR="test" LCOV_BASE="$TOP_DIR/lcov_coverage.base" LCOV_INFO="$TOP_DIR/lcov_coverage.info" +LCOV_INFO_TMP="$TOP_DIR/lcov_coverage.info_tmp" LCOV_INFO_FINAL="$TOP_DIR/lcov_coverage_final.info" LCOV_RESULTS_DIR="$TOP_DIR/lcov-results"