File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 7
7
8
8
source envcov.sh
9
9
10
- " ${LCOV_PATH} /lcov " --zerocounters -d " ${OBJ_DIR} "
10
+ " ${LCOV} " --zerocounters -d " ${OBJ_DIR} "
Original file line number Diff line number Diff line change @@ -10,4 +10,5 @@ source env.sh
10
10
LCOV_INFO=Coverage.info
11
11
12
12
LCOV_PATH=${SRCROOT} /XcodeCoverage/lcov-1.10/bin
13
+ LCOV=${LCOV_PATH} /lcov
13
14
OBJ_DIR=${OBJECT_FILE_DIR_normal} /${CURRENT_ARCH}
Original file line number Diff line number Diff line change @@ -25,13 +25,13 @@ enter_lcov_dir()
25
25
26
26
gather_coverage ()
27
27
{
28
- " ${LCOV_PATH} /lcov " --capture -b " ${SRCROOT} " -d " ${OBJ_DIR} " -o ${LCOV_INFO}
28
+ " ${LCOV} " --capture -b " ${SRCROOT} " -d " ${OBJ_DIR} " -o ${LCOV_INFO}
29
29
}
30
30
31
31
exclude_data ()
32
32
{
33
- " ${LCOV_PATH} /lcov " --remove ${LCOV_INFO} " /Applications/Xcode.app/*" -d " ${OBJ_DIR} " -o ${LCOV_INFO}
34
- " ${LCOV_PATH} /lcov " --remove ${LCOV_INFO} " main.m" -d " ${OBJ_DIR} " -o ${LCOV_INFO}
33
+ " ${LCOV} " --remove ${LCOV_INFO} " /Applications/Xcode.app/*" -d " ${OBJ_DIR} " -o ${LCOV_INFO}
34
+ " ${LCOV} " --remove ${LCOV_INFO} " main.m" -d " ${OBJ_DIR} " -o ${LCOV_INFO}
35
35
# Remove other patterns here...
36
36
}
37
37
You can’t perform that action at this time.
0 commit comments