blob: c1805e8f96463eabeafcf6c83a9b4e5deaa5b0c2 [file] [log] [blame]
#!/bin/bash
. ./.ci/.common.sh
TIDY_FILES=(
drm/DrmFbImporter.h
utils/UniqueFd.h
utils/log.h
utils/properties.h
)
set -xe
for source in "${TIDY_FILES[@]}"
do
$CLANG_TIDY $source -- -x c++ $INCLUDE_DIRS $CXXARGS
done