From c5203a4934621292fb87d7e23d91b4068fd9ae51 Mon Sep 17 00:00:00 2001 From: Adrian Wielgosik Date: Tue, 26 Mar 2019 19:00:06 +0100 Subject: [PATCH] Remove .gcno files before a coverage run --- tests/.travis-runner.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/.travis-runner.sh b/tests/.travis-runner.sh index 36b9f43aca..f555265898 100755 --- a/tests/.travis-runner.sh +++ b/tests/.travis-runner.sh @@ -13,6 +13,7 @@ pip install pipenv if [ $CODE_COVERAGE = "true" ] then find . -name '*.gcda' -delete + find . -name '*.gcno' -delete export CARGO_INCREMENTAL=0 export RUSTFLAGS="-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Zno-landing-pads"