From: marian Date: Fri, 5 Mar 2010 15:01:11 +0000 (+0000) Subject: # simple script to filter warnings in TPC code X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=6f6f9cca6173cc6bb495dba010621ae857e6dfb1 # simple script to filter warnings in TPC code # root warning are filtered out --- diff --git a/TPC/scripts/cppViolator.sh b/TPC/scripts/cppViolator.sh new file mode 100644 index 00000000000..47e26f435e3 --- /dev/null +++ b/TPC/scripts/cppViolator.sh @@ -0,0 +1,15 @@ +#!/bin/bash +# +# simple script to filter warnings in TPC code +# root warning are filtered out +# + + +make clean-TPC +make -i -j 5 &> compile.txt + +cat compile.txt | grep -v $ROOTSYS | grep warning + + + +