Download this file
20 lines (11 with data), 464 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 | @ECHO OFF
ECHO Running Delphi Code Coverage
CALL "SetupEnvironment.bat"
PUSHD %BUILD%
MKDIR reports > NUL 2>&1
PUSHD reports
MKDIR coverage > NUL 2>&1
POPD
set Platform=Win32
%BUILD%\%Platform%\CodeCoverage.exe -e %BUILD%\%Platform%\%PRJ%.exe -m %BUILD%\%Platform%\%PRJ%.map -esm %PRJDIR%\* -ife -xml -xmllines -html -uf %BASEDIR%\coverage_units.lst -od %REPORTS%\coverage -dproj %PRJDIR%\%PRJ%.dproj -lt %REPORTS%\CodeCoverage.log
POPD
|
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.