]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/scripts/cppViolator.sh
composition of the Alluminum alloy that constitutes the ITS-TPC support rings updated...
[u/mrichter/AliRoot.git] / TPC / scripts / cppViolator.sh
CommitLineData
6f6f9cca 1#!/bin/bash
2#
3# simple script to filter warnings in TPC code
4# root warning are filtered out
9de351ee 5#
6# Usage:
7# cd $ALICE_ROOT
8# $ALICE_ROOT/TPC/scripts/cppViolator.sh
9# warnings.txt file will be created
10# Please attach the the warnings.txt to the request for commit
11#
6f6f9cca 12
13
14make clean-TPC
15make -i -j 5 &> compile.txt
16
9de351ee 17cat compile.txt | grep -v $ROOTSYS | grep -v G__ | grep -v TMatrix | grep -v TMap| grep warning > warnings.txt
18
19cat warnings.txt
20
6f6f9cca 21
22
23
24