26 lines
598 B
Bash
Executable File
26 lines
598 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# SPDX-FileCopyrightText: 2019 Rasmus Karlsson <rasmus.karlsson@pajlada.com>
|
|
#
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
set -eu
|
|
|
|
fail="0"
|
|
|
|
clang-format --version
|
|
|
|
while read -r file; do
|
|
if ! diff -u <(cat "$file") <(clang-format "$file"); then
|
|
echo "$file differs!!!!!!!"
|
|
fail="1"
|
|
fi
|
|
done < <(find src/ tests/src benchmarks/src mocks/include -type f \( -iname "*.hpp" -o -iname "*.cpp" \))
|
|
|
|
if [ "$fail" = "1" ]; then
|
|
echo "At least one file is poorly formatted - check the output above"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Everything seems to be formatted properly! Good job"
|