Salome HOME
#1186 misprint “Origin/PointCoordindates”. The correction: using 'title' or 'label...
[modules/shaper.git] / lcov-run.sh
1 #!/bin/bash
2
3 source env.sh
4 source ${TOOLS_DIR}/env_linux.sh
5
6 export GCOV_DIR=${GCOV_DIR:-${BUILD_DIR}}
7
8 echo "Collect coverage data..."
9 lcov --capture --directory ${GCOV_DIR} --output-file coverage.info
10
11 echo "Generate HTML for coverage data..."
12 genhtml coverage.info --output-directory ${1:-lcov_html}
13