diff options
Diffstat (limited to 'contrib/compare-debug')
-rwxr-xr-x | contrib/compare-debug | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/contrib/compare-debug b/contrib/compare-debug index 9864ee91f30..c2e1335366c 100755 --- a/contrib/compare-debug +++ b/contrib/compare-debug @@ -141,4 +141,12 @@ $rm "$1.$suf1" "$2.$suf2" trap "exit $status; exit" 0 1 2 15 +if test -f "$1".gkd || test -f "$2".gkd; then + if cmp "$1".gkd "$2".gkd; then + : + else + status=$? + fi +fi + exit $status |