aboutsummaryrefslogtreecommitdiffstats
path: root/tools/check-copyright.sh
diff options
context:
space:
mode:
authorPimyn Girgis <bemenboshra2001@gmail.com>2024-07-31 09:16:32 +0000
committerDmitry Vyukov <dvyukov@google.com>2024-07-31 17:11:04 +0000
commit1e9c4cf3ae82ef82220af312606fffe65e124563 (patch)
treecd0ecc9b1197908227ed78926660dab1ce8b892c /tools/check-copyright.sh
parent6fde257d027be2ee1163591a87225d2a3d360312 (diff)
tools/syz-declextract: run syz-declextract on files specified by a compilation database
Run multiple instances of syz-declextract only on files specifed by a compilation database.
Diffstat (limited to 'tools/check-copyright.sh')
-rwxr-xr-xtools/check-copyright.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/check-copyright.sh b/tools/check-copyright.sh
index 6cab5890d..5d93b0151 100755
--- a/tools/check-copyright.sh
+++ b/tools/check-copyright.sh
@@ -4,7 +4,7 @@
FILES=0
FAILED=""
-for F in $(find . -name "*.go" -o -name "*.sh" -o -name "*.cc" -o -name "*.h" \
+for F in $(find . -name "*.go" -o -name "*.sh" -o -name "*.cpp" -o -name "*.cc" -o -name "*.h" \
-o -name "*.S" -o -name "*.py" -o -name "*.yml" -o -name "*.yaml" -o -name "*.fbs" \
-o \( -path "./sys/*/*.txt" \) | egrep -v "/_include/|/vendor/|/gen/|/testdata/"); do
((FILES+=1))