diff options
Diffstat (limited to 'apps/test-framework')
-rw-r--r-- | apps/test-framework/run-core-tests.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/test-framework/run-core-tests.sh b/apps/test-framework/run-core-tests.sh index 0f72fd572f..fb558149d7 100644 --- a/apps/test-framework/run-core-tests.sh +++ b/apps/test-framework/run-core-tests.sh @@ -3,6 +3,9 @@ # shellcheck source-path=SCRIPTDIR CURRENT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +# Clean up gcda files to avoid false positives in coverage reports +find var/build/obj -name '*.gcda' -delete + # shellcheck source=../bash_shared/includes.sh source "$CURRENT_PATH/../bash_shared/includes.sh" |