diff --git a/TestScripts/cryptest-tidy.sh b/TestScripts/cryptest-tidy.sh new file mode 100755 index 00000000..537b3785 --- /dev/null +++ b/TestScripts/cryptest-tidy.sh @@ -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