summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorFintasticMan <52415484+FintasticMan@users.noreply.github.com>2022-06-11 21:45:11 +0200
committerGitHub <noreply@github.com>2022-06-11 22:45:11 +0300
commita1385cb481de42028af0a3eb6eb26f51b2911410 (patch)
treebef447b654f894cf9786a3d64d1e11686be36a5f /tests
parentde62620de1a88fdbaafb56ebdfada37b4bf1c54c (diff)
Minor changes to clang-format workflow (#1177)
Diffstat (limited to 'tests')
-rwxr-xr-xtests/test-format.sh13
1 files changed, 6 insertions, 7 deletions
diff --git a/tests/test-format.sh b/tests/test-format.sh
index 86667c75..fd3201d0 100755
--- a/tests/test-format.sh
+++ b/tests/test-format.sh
@@ -16,18 +16,17 @@ for file in $CHANGED_FILES
do
[ -e "$file" ] || continue
case "$file" in
- src/libs/*) continue ;;
+ src/libs/*|src/FreeRTOS/*) continue ;;
*.cpp|*.h)
echo Checking "$file"
- clang-format -i "$file"
- if ! git diff --quiet
+ PATCH="$(basename "$file").patch"
+ git clang-format-12 -q --style file --diff "$GITHUB_BASE_REF" "$file" > "$PATCH"
+ if [ -s "$PATCH" ]
then
printf "\033[31mError:\033[0m Formatting error in %s\n" "$file"
CHANGED=1
- git add "$file"
- git commit -q -m "Apply clang-format to $(basename "$file")"
- printf "Creating patch "
- git format-patch HEAD~
+ else
+ rm "$PATCH"
fi
esac
done