# simple script to filter warnings in TPC code
authormarian <marian@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 5 Mar 2010 15:01:11 +0000 (15:01 +0000)
committermarian <marian@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 5 Mar 2010 15:01:11 +0000 (15:01 +0000)
# root warning are filtered out

TPC/scripts/cppViolator.sh [new file with mode: 0644]

diff --git a/TPC/scripts/cppViolator.sh b/TPC/scripts/cppViolator.sh
new file mode 100644 (file)
index 0000000..47e26f4
--- /dev/null
@@ -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
+
+
+
+