remove deprecated files.

This commit is contained in:
NADAL Jean-Baptiste
2019-12-20 17:47:13 +01:00
parent cb69a6b934
commit 4c4eb49477
5 changed files with 0 additions and 184 deletions

View File

@@ -1,17 +0,0 @@
#!/usr/bin/env bash
BUILD_DIR=$1
analyse_file () {
DIRNAME=`dirname $1`
echo "Analyse directory: $DIRNAME"
cd $DIRNAME
pvs-studio-analyzer analyze -o analyse.log --compiler gcc --compiler g++
plog-converter -a GA:1,2 -t tasklist -o report.tasks analyse.log
echo -e "\n**********************************\n"
cat report.tasks
echo -e "\n**********************************\n"
}
# Main
find ${BUILD_DIR} -name compile_commands.json | while read file; do analyse_file $file; done