mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 13:43:47 +01:00
18 lines
430 B
Plaintext
18 lines
430 B
Plaintext
|
#!/bin/sh
|
||
|
# Copyright 2013 The Tor Project, Inc.
|
||
|
# See LICENSE for licensing information.
|
||
|
|
||
|
# cov-diff -- compare two directories full of gcov files.
|
||
|
|
||
|
DIRA="$1"
|
||
|
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"
|
||
|
diff -u "$A.tmp" "$B.tmp"
|
||
|
rm "$A.tmp" "$B.tmp"
|
||
|
done
|
||
|
|