Collect number of errors form ABI checks runs in compare-abis.sh.

svn path=/trunk/; revision=37553
This commit is contained in:
Balint Reczey 2011-06-05 19:29:30 +00:00
parent aa369ddbae
commit 198c4138ca
1 changed files with 4 additions and 3 deletions

View File

@ -3,8 +3,6 @@
# Compare ABIs of two Wireshark working copies
# $Id: $
set -e
function acc () {
LIBNAME=$1
DIR=$2
@ -29,7 +27,10 @@ V2_PATH=$2
#make -C $V1_PATH all dumpabi
#make -C $V2_PATH all dumpabi
acc libwiretap wiretap $V1_PATH $V2_PATH
acc libwiretap wiretap $V1_PATH $V2_PATH
RET=$?
acc libwsutil wsutil $V1_PATH $V2_PATH
RET=$(($RET + $?))
acc libwireshark epan $V1_PATH $V2_PATH
exit $(($RET + $?))