diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2003-06-11 15:36:12 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2003-06-11 15:36:12 +0000 |
commit | caaa00eef01a8e06210ea5a2f3e0b1404c8915fb (patch) | |
tree | 44c0b730e1bd5cc2385a4158795bddf14819fa61 /sal/qa/helper | |
parent | 73031bf015c0935d57fd92468ee52e80d5511fb8 (diff) |
INTEGRATION: CWS qadev8 (1.2.6); FILE MERGED
2003/06/10 09:46:23 lla 1.2.6.1: #110120# gcov enhancements.
Diffstat (limited to 'sal/qa/helper')
-rwxr-xr-x | sal/qa/helper/gcov/gcov_all | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/qa/helper/gcov/gcov_all b/sal/qa/helper/gcov/gcov_all index 5e894e1fb702..c2517693fdea 100755 --- a/sal/qa/helper/gcov/gcov_all +++ b/sal/qa/helper/gcov/gcov_all @@ -1,5 +1,5 @@ #!/bin/bash -# $Id: gcov_all,v 1.2 2003-05-19 13:16:46 vg Exp $ +# $Id: gcov_all,v 1.3 2003-06-11 16:36:12 vg Exp $ # This helper run lists all c and cxx files from selected directories. # PRJ points to the flat project directory @@ -11,5 +11,5 @@ FILES=`/bin/ls $PRJ/osl/unx/*.c $PRJ/osl/unx/*.cxx $PRJ/rtl/source/*.c $PRJ/rtl/ # Use gcov_filter on every c/cxx file. for file in $FILES; do # echo $file - ./gcov_filter.pl -i $PRJ/util/sal.map $file $* + perl gcov_filter.pl -i $PRJ/util/sal.map $file $* done |