Originally created by: Phil.Pr...@gmail.com
Originally owned by: ring....@gmail.com
1/ if the "-m" switch is not present use <name>.map where <Name> is the name of the exe in "-m" switch. So :
CodeCoverage -e TestApp.exe -u TestUnit
is equivalent as :
CodeCoverage -e TestApp.exe -m TestApp.map -u TestUnit
2/ use wildcard in "-u" switch ie :
-u *.pas = all the '.pas' files in the directory.
View and moderate all "tickets Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Tickets"
Originally posted by: ring....@gmail.com
1/ When using the '-e' parameter, the application will automatically set the map file to be the application parameter filename, changing the extension to '.map' (the code is here https://code.google.com/p/delphi-code-coverage/source/browse/trunk/CodeCoverage/CoverageConfiguration.pas#309 )
If you think this not the case, could you please provide a test case.
2/ I have been thinking of adding the ability to use regular expressions and may include it in a later release.
In the mean time, you could use the DOS dir command to list all the Pas files in the directory (dir /b *.pas >> somefile) in to a file and use the -uf (-uf somefile).
Labels: -Type-Defect -Priority-Medium Type-Enhancement Priority-Low
Owner: ring....@gmail.com
Status: Accepted