From 9de351ee65492a7a34e9af8a6d9781cbae546a93 Mon Sep 17 00:00:00 2001 From: marian Date: Fri, 5 Mar 2010 15:13:30 +0000 Subject: [PATCH] # # simple script to filter warnings in TPC code # root warning are filtered out # # Usage: # cd $ALICE_ROOT # $ALICE_ROOT/TPC/scripts/cppViolator.sh # warnings.txt file will be created # Please attach the the warnings.txt to the request for commit # --- TPC/scripts/cppViolator.sh | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/TPC/scripts/cppViolator.sh b/TPC/scripts/cppViolator.sh index 47e26f435e3..51f552e8791 100644 --- a/TPC/scripts/cppViolator.sh +++ b/TPC/scripts/cppViolator.sh @@ -2,13 +2,22 @@ # # simple script to filter warnings in TPC code # root warning are filtered out -# +# +# Usage: +# cd $ALICE_ROOT +# $ALICE_ROOT/TPC/scripts/cppViolator.sh +# warnings.txt file will be created +# Please attach the the warnings.txt to the request for commit +# make clean-TPC make -i -j 5 &> compile.txt -cat compile.txt | grep -v $ROOTSYS | grep warning +cat compile.txt | grep -v $ROOTSYS | grep -v G__ | grep -v TMatrix | grep -v TMap| grep warning > warnings.txt + +cat warnings.txt + -- 2.31.1