office-gobmx/sal/qa/helper/gcov/gcov_all
Kurt Zenker 31920656e9 INTEGRATION: CWS qadev24 (1.3.320); FILE MERGED
2005/10/13 11:36:29 lla 1.3.320.1: #i52275# add object directory parameter
2005-11-02 16:23:43 +00:00

15 lines
524 B
Bash
Executable file

#!/bin/bash
# $Id: gcov_all,v 1.4 2005-11-02 17:23:43 kz Exp $
# This helper run lists all c and cxx files from selected directories.
# PRJ points to the flat project directory
PRJ='../../..'
# selected directories
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`
# Use gcov_filter on every c/cxx file.
for file in $FILES; do
# echo $file
perl gcov_filter.pl -o $PRJ/unxlngi6/slo -i $PRJ/util/sal.map $file $*
done