Add cryptest-tidy.sh script

pull/575/head
Jeffrey Walton 2018-01-24 18:30:21 -05:00
parent 4d4c3d92a8
commit e546b2af85
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 6 additions and 0 deletions

6
TestScripts/cryptest-tidy.sh Executable file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env bash
for file in $(find . -maxdepth 1 -type f -name '*.cpp'); do
echo "Tidying $file"
clang-tidy $file -checks=-clang-analyzer-optin.cplusplus.VirtualCall -- -std=c++03
done