merge the formfield patch from ooo-build
[ooovba.git] / sal / qa / helper / gcov / gcov_all
blobdad1f736c68870017fbeac714829cd5e92f16ac7
1 #!/bin/bash
2 # $Id: gcov_all,v 1.4 2005-11-02 17:23:43 kz Exp $
3 # This helper run lists all c and cxx files from selected directories.
5 # PRJ points to the flat project directory
6 PRJ='../../..'
8 # selected directories
9 FILES=`/bin/ls $PRJ/osl/unx/*.c $PRJ/osl/unx/*.cxx $PRJ/rtl/source/*.c $PRJ/rtl/source/*.cxx $PRJ/osl/all/*.c $PRJ/osl/all/*.cxx $PRJ/textenc/*.c`
11 # Use gcov_filter on every c/cxx file.
12 for file in $FILES; do
13 # echo $file
14 perl gcov_filter.pl -o $PRJ/unxlngi6/slo -i $PRJ/util/sal.map $file $*
15 done