diff options
author | Craig Tiller <craig.tiller@gmail.com> | 2015-01-27 09:15:38 -0800 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2015-01-27 09:16:09 -0800 |
commit | 45bc600bdc593fb9dd753fc3d85e52433ba00c0e (patch) | |
tree | cf4837640f7bca8480022372e6a6c2a41c98c4a6 /tools/run_tests | |
parent | a2eb9499278a2e8b32e04d7a871335410874f16c (diff) |
Restrict gcov to c/c++ for now
Diffstat (limited to 'tools/run_tests')
-rwxr-xr-x | tools/run_tests/run_lcov.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/run_lcov.sh b/tools/run_tests/run_lcov.sh index 6f22b0e8a4..068213a3d2 100755 --- a/tools/run_tests/run_lcov.sh +++ b/tools/run_tests/run_lcov.sh @@ -7,7 +7,7 @@ out=`realpath ${1:-coverage}` root=`realpath $(dirname $0)/../..` tmp=`mktemp` cd $root -tools/run_tests/run_tests.py -c gcov +tools/run_tests/run_tests.py -c gcov -l c c++ lcov --capture --directory . --output-file $tmp genhtml $tmp --output-directory $out rm $tmp |