From 33d8fdca3f2cc2114621a4bccb1af3ea7c979293 Mon Sep 17 00:00:00 2001 From: Tomusdrw Date: Tue, 19 Jan 2016 14:43:24 +0100 Subject: [PATCH] Fixing include/exclude patterns --- cov.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cov.sh b/cov.sh index e7366ab82..7d13c8c96 100755 --- a/cov.sh +++ b/cov.sh @@ -15,7 +15,7 @@ if ! type kcov > /dev/null; then exit 1 fi -cargo test --no-run +cargo test --no-run || exit 2 mkdir -p target/coverage -kcov --verify --skip-solibs target/coverage target/debug/ethcore-* +kcov --exclude-pattern ~/.multirust --include-pattern src --verify target/coverage target/debug/ethcore* xdg-open target/coverage/index.html