wireshark/tools/pre-commit
Bill Meier cdf6d62b3b tools/pre-commit: Complete all checks on all files before exiting with Ok/Fail status.
Change-Id: Iea6df6fbe5a977b282e823f87cd9f760e92a3e22
Reviewed-on: https://code.wireshark.org/review/2918
Reviewed-by: Bill Meier <wmeier@newsguy.com>
2014-07-08 00:49:47 +00:00

50 lines
1.2 KiB
Bash
Executable file

#!/bin/sh
# Copyright 2013, Alexis La Goutte (See AUTHORS file)
#
# For git user: copy pre-commit to .git/hook/ folder
# To not launch the script when committing, use --no-verify argument
#
# From
# http://mark-story.com/posts/view/using-git-commit-hooks-to-prevent-stupid-mistakes
#
if [ -z $GIT_DIR ]; then GIT_DIR=".git"; fi
# Check for newer versions of the pre-commit script
if [ ${GIT_DIR}/hooks/pre-commit -ot ./tools/pre-commit ]; then
echo "Pre-commit hook script is outdated, please update!"
fi
exit_status=0
for FILE in `git diff-index --cached --name-only HEAD | grep "\.[ch]$"` ; do
#Check if checkhf is good
./tools/checkhf.pl $FILE || exit_status=1
#Check if checkAPIs is good
./tools/checkAPIs.pl -p $FILE || exit_status=1
#Check if fix-encoding-args is good
./tools/fix-encoding-args.pl $FILE || exit_status=1
done
# If there are whitespace errors, print the offending file names and fail. (from git pre-commit.sample)
git diff-index --check --cached HEAD || exit_status=1
exit $exit_status
#
# Editor modelines
#
# Local Variables:
# c-basic-offset: 4
# tab-width: 8
# indent-tabs-mode: nil
# End:
#
# ex: set shiftwidth=4 tabstop=8 expandtab:
# :indentSize=4:tabSize=8:noTabs=true:
#