diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2022-02-02 19:12:07 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2022-02-28 14:06:33 +0100 |
commit | 34bc1a3944458d005752b4e6c000ac35911b6ca6 (patch) | |
tree | 98e2fd13e3d61952aa0322634b4180fe23cd5fef /configure.ac | |
parent | 34e020ac35a40b9b9440d0064dcd9dcf64fe0cbe (diff) |
Added `--enable-code-coverage' build using lcov for coverage generation.add/code-coverage-build
* CI job generates a coverage report
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 2a732efe2..462847387 100644 --- a/configure.ac +++ b/configure.ac @@ -15,6 +15,8 @@ AS_IF([test "${with_only_libndpi+set}" = set],[ AC_ARG_WITH(sanitizer, AS_HELP_STRING([--with-sanitizer], [Build with support for address, undefined and leak sanitizer])) AC_ARG_ENABLE(fuzztargets, AS_HELP_STRING([--enable-fuzztargets], [Enable fuzz targets]),[enable_fuzztargets=$enableval],[enable_fuzztargets=no]) +AC_ARG_ENABLE(code-coverage, AS_HELP_STRING([--enable-code-coverage], [Generate Code Coverage report])) + AS_IF([test "x$enable_fuzztargets" = "xyes"], [BUILD_FUZZTARGETS=1], [BUILD_FUZZTARGETS=0]) AM_CONDITIONAL([BUILD_FUZZTARGETS], [test "x$enable_fuzztargets" = "xyes"]) @@ -23,6 +25,11 @@ AS_IF([test "${with_sanitizer+set}" = set],[ LDFLAGS="${LDFLAGS} -fsanitize=address -fsanitize=undefined -fno-sanitize=alignment -fsanitize=leak" ]) +AS_IF([test "x$enable_code_coverage" = "xyes"],[ + CFLAGS="${CFLAGS} -fprofile-arcs -ftest-coverage" + LDFLAGS="${LDFLAGS} --coverage" +]) + LT_INIT LT_LIB_M PKG_PROG_PKG_CONFIG |