22 lines
662 B
Bash
Executable File
22 lines
662 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
. ./lcov.env
|
|
|
|
cd ..
|
|
[ ! -d $TOP_DIR ] && mkdir $TOP_DIR
|
|
[ -f $LCOV_BASE ] && rm -f $LCOV_BASE
|
|
[ -f $LCOV_INFO ] && rm -f $LCOV_INFO
|
|
[ -f $LCOV_INFO_TMP ] && rm -f $LCOV_INFO_TMP
|
|
[ -f $LCOV_INFO_TMP2 ] && rm -f $LCOV_INFO_TMP2
|
|
[ -f $LCOV_INFO_TMP3 ] && rm -f $LCOV_INFO_TMP3
|
|
[ -f $LCOV_INFO_TMP4 ] && rm -f $LCOV_INFO_TMP4
|
|
[ -f $LCOV_INFO_FINAL ] && rm -f $LCOV_INFO_FINAL
|
|
[ -d $LCOV_RESULTS_DIR ] && rm -rf $LCOV_RESULTS_DIR
|
|
[ ! -d $LCOV_RESULTS_DIR ] && mkdir $LCOV_RESULTS_DIR
|
|
|
|
lcov $LCOV_RC_BC --no-checksum --zerocounters --directory .
|
|
lcov $LCOV_RC_BC --no-checksum --capture --initial --directory . --output-file $LCOV_BASE
|
|
|
|
cd $TOP_DIR
|
|
exit
|