From: Nick Mathewson Date: Fri, 8 Feb 2019 16:22:55 +0000 (-0500) Subject: cov-diff: better handle the case where a file stops having coverage X-Git-Tag: tor-0.4.1.1-alpha~209^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a036c0187a7938718a1056f45ca95ddbca744b49;p=thirdparty%2Ftor.git cov-diff: better handle the case where a file stops having coverage --- diff --git a/scripts/test/cov-diff b/scripts/test/cov-diff index f3ca856888..8751800966 100755 --- a/scripts/test/cov-diff +++ b/scripts/test/cov-diff @@ -16,6 +16,5 @@ for B in "$DIRB"/*; do fi perl -pe 's/^\s*\!*\d+(\*?):/ 1$1:/; s/^([^:]+:)[\d\s]+:/$1/; s/^ *-:(Runs|Programs):.*//;' "$B" > "$B.tmp" diff -u "$A.tmp" "$B.tmp" |perl -pe 's/^((?:\+\+\+|---)(?:.*tmp))\s+.*/$1/;' - rm "$A.tmp" "$B.tmp" + rm -f "$A.tmp" "$B.tmp" done -