Skip to content

Commit

Permalink
removing applications and tests
Browse files Browse the repository at this point in the history
  • Loading branch information
landinjm committed Oct 24, 2024
1 parent 66ac723 commit 66756f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utilities/clang_tidy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ CC=clang CXX=clang++ cmake "${arguments[@]}" "$dir" || (echo "cmake failed!"; fa
cmake --build . || (echo "make failed!"; false) || exit 3

# Run clang-tidy
run-clang-tidy -p . -quiet -header-filter "$dir/include/*" "$dir/src/*" "$dir/tests/*" "$dir/applications/*" 2>error.txt >output.txt
run-clang-tidy -p . -quiet -header-filter "$dir/include/*" "$dir/src/*" 2>error.txt >output.txt

# Remove duplicates & log them
grep -E '(warning|error): ' output.txt | sort | uniq > clang-tidy.log
Expand Down

0 comments on commit 66756f9

Please sign in to comment.