commit 48af23eb0df733c4f42f80e2e3ad047f298ac517
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Tue Oct 14 09:41:40 2014 -0400
Emit fewer spurious lines in cov-diff output.
---
scripts/test/cov-diff | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/scripts/test/cov-diff b/scripts/test/cov-diff
index 33a5480..48dbec9 100755
--- a/scripts/test/cov-diff
+++ b/scripts/test/cov-diff
@@ -9,8 +9,8 @@ DIRB="$2"
for A in $DIRA/*; do
B=$DIRB/`basename $A`
- perl -pe 's/^\s*\d+:/ 1:/; s/^([^:]+:)[\d\s]+:/$1/;' "$A" > "$A.tmp"
- perl -pe 's/^\s*\d+:/ 1:/; s/^([^:]+:)[\d\s]+:/$1/;' "$B" > "$B.tmp"
+ perl -pe 's/^\s*\d+:/ 1:/; s/^([^:]+:)[\d\s]+:/$1/; s/^ *-:(Runs|Programs):.*//;' "$A" > "$A.tmp"
+ perl -pe 's/^\s*\d+:/ 1:/; s/^([^:]+:)[\d\s]+:/$1/; s/^ *-:(Runs|Programs):.*//;' "$B" > "$B.tmp"
diff -u "$A.tmp" "$B.tmp"
rm "$A.tmp" "$B.tmp"
done