From f387f7240c26614f8a1c65fb170098dcf509c9b1 Mon Sep 17 00:00:00 2001 From: Balint Reczey Date: Sun, 30 Oct 2011 22:46:52 +0000 Subject: Compare current ABI to last (git) tagged version's ABI svn path=/trunk/; revision=39682 --- tools/git-compare-abis.sh | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 tools/git-compare-abis.sh (limited to 'tools/git-compare-abis.sh') diff --git a/tools/git-compare-abis.sh b/tools/git-compare-abis.sh new file mode 100755 index 0000000000..bc806a29d4 --- /dev/null +++ b/tools/git-compare-abis.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +# check is Wireshark's ABI has ben changes since last release (tag) +set -e + +if test -z "$1"; then + echo "Usage:" + echo "$0 \"\"" + echo "e.g. $0 \"./autogen.sh && ./configure && make -j3 && make dumpabi\"" + exit 1 +fi + +# build current version +bash -c "$1" + +cd `git rev-parse --show-toplevel` +# we are at top level +LAST_TAG=`git describe --tags --abbrev=0` +rm -rf $LAST_TAG +mkdir $LAST_TAG +git archive $LAST_TAG | tar -x -C $LAST_TAG + +# build latest tag +(cd $LAST_TAG && bash -c "$1") + +exec tools/compare-abis.sh `pwd`/$LAST_TAG `pwd` + -- cgit v1.2.3