From ce9ae733daa1a7fb38fd68b9cf669eea0bf1656d Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Fri, 6 May 2016 15:50:25 +0200 Subject: [PATCH 09/10] CI: Exclude files in /tmp during coverage runs Exclude files from /tmp during coverage generation to avoid issues with (presumably) files generated by dtrace that couldn't otherwise be opened or parsed. --- contrib/ci/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/ci/run b/contrib/ci/run index 3c8f502f82f6a3c7ca7021e4f8d55759e78542a2..5f067bc7c5d862a68a358bb64a3ae6c0e0eba706 100755 --- a/contrib/ci/run +++ b/contrib/ci/run @@ -298,7 +298,7 @@ function build_coverage() --add-tracefile ci-check.info \ --output-file ci-dirty.info stage lcov-clean lcov --remove ci-dirty.info \ - "/usr/*" "src/tests/*" \ + "/usr/*" "src/tests/*" "/tmp/*" \ --output-file ci.info stage genhtml eval 'genhtml --output-directory \ "$coverage_report_dir" \ -- 2.4.11