blob: 0e3e35be839b86c7162245df89dd2f6ca0b0c783 [file] [log] [blame]
#!/bin/bash
. ./.ci/.common.sh
TIDY_FILES=(
drm/DrmFbImporter.h
drm/DrmUnique.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