diff options
author | Jihoon Jung <jh8801.jung@samsung.com> | 2024-03-12 13:29:35 +0900 |
---|---|---|
committer | Jihoon Jung <jh8801.jung@samsung.com> | 2024-03-12 14:09:52 +0900 |
commit | c84d768635143e74a4e16fec0e31c32cb1b54b89 (patch) | |
tree | cb981e7c7d2ecc0a8dcec8acfb165483ef70f51a | |
parent | 49875fa0d5af84be577712fd9631a9af7ad52e9f (diff) | |
download | aitt-accepted/tizen_unified.tar.gz aitt-accepted/tizen_unified.tar.bz2 aitt-accepted/tizen_unified.zip |
Fixed a build error due to lcov 2.0 upgradeaccepted/tizen/unified/x/20240314.073416accepted/tizen/unified/20240313.135256accepted/tizen/unified/20240313.134006tizenaccepted/tizen_unified_xaccepted/tizen_unified
Change-Id: I54f90d31b9ed2dc1f7a434e1ee161e9dc3e2eebd
Signed-off-by: Jihoon Jung <jh8801.jung@samsung.com>
-rwxr-xr-x | debian/rules | 2 | ||||
-rw-r--r-- | packaging/aitt.spec | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/debian/rules b/debian/rules index 8a2ac15..a714440 100755 --- a/debian/rules +++ b/debian/rules @@ -65,7 +65,7 @@ override_dh_auto_test: ctest --output-on-failure --timeout 100 if [ ${TEST} -ne 0 -a ${COVERAGE} -ne 0 ]; then \ - lcov -c --ignore-errors graph --no-external -b . -d . -o ${AITT_BUILD_ROOT_PATH}/aitt_gcov.info; \ + lcov -c --ignore-errors mismatch,graph,unused --no-external -b . -d . -o ${AITT_BUILD_ROOT_PATH}/aitt_gcov.info; \ genhtml ${AITT_BUILD_ROOT_PATH}/aitt_gcov.info -o ${AITT_BUILD_ROOT_PATH}/html --legend --show-details; \ fi .PHONY: override_dh_link diff --git a/packaging/aitt.spec b/packaging/aitt.spec index 8d4b9a3..640c9ae 100644 --- a/packaging/aitt.spec +++ b/packaging/aitt.spec @@ -94,7 +94,7 @@ ctest --output-on-failure --timeout 30 || true %if 0%{test} && 0%{gcov} # Extract coverage information -lcov -c --ignore-errors graph --no-external -b . -d . -o %{name}_gcov.info +lcov -c --ignore-errors mismatch,graph,unused --no-external -b . -d . -o %{name}_gcov.info genhtml %{name}_gcov.info -o out --legend --show-details %endif |