Releases: OpenCppCoverage/OpenCppCoverage
Releases · OpenCppCoverage/OpenCppCoverage
OpenCppCoverage 0.9.9.0
Release Notes
- OpenCppCoverage 64 bits version can debug 32 bits and 64 bits program.
- OpenCppCoverage 32 bits can only debug 32 bits program.
Changelog:
- Add version information at the end of the reports. Thanks @pamrulla for #87.
- Build OpenCppCoverage with Visual Studio 2019.
- Fix
Error: exists: The device is not ready
. See #92. - Remove unreachable lines from the coverage. See #97.
- Fix an issue when using a network drive: Thanks @jkoppenw for #115.
- Set
timestamp
field for Cobertura reports. See #109. - Update JQuery to 3.4.1. Thanks @opidopiopi for #116.
- Display several FAQ links when some errors occured.
OpenCppCoverage 0.9.8.0
Release Notes
- OpenCppCoverage 64 bits version can debug 32 bits and 64 bits program.
- OpenCppCoverage 32 bits can only debug 32 bits program.
Changelog:
OpenCppCoverage 0.9.7.0
Release Notes
- OpenCppCoverage 64 bits version can debug 32 bits and 64 bits program.
- OpenCppCoverage 32 bits can only debug 32 bits program.
Changelog:
- Add several optimisations to reduce OpenCppCoverage initialisation time.
- Migrate sources of OpenCppCoverage to Visual Studio 2017.
- Third party libraries can be built easily thanks to vcpkg.
- Ignore managed modules. For example
vstest.console.exe
can load a C++ CLI module that uses an unmanaged C++ module. In this case, the C++ CLI module is ignored. - Coverage quality with
--optimized_build
is improved. - Add
--substitute_pdb_source_path
to allow building on one machine and generating the coverage on another one. - OpenCppCoverage can run a program in the
PATH
. - Exit codes from coverage injected with
--input_coverage
are ignored. - HTML export contains the total number of covered and uncovered lines for each module and file.
- Improve the Cobertura export for Visual Studio Team System.
- General improvement on messages:
- Suggestions are provided for
--sources
and--modules
when the coverage is empty. - Add an error message when the DOS command line max size (8191 characters) is reached.
- Improve the error message when specifying a folder for Cobertura or binary export.
- Improve the error message when OpenCppCoverage cannot find the path of a module.
- Check the values of
--sources
,--excluded_sources
,--modules
,--excluded_modules
do not contains/
,.
or..
- On failure, OpenCppCoverage returns exit code 0x9F8C8E5C.
- Suggestions are provided for
OpenCppCoverage 0.9.6.1
Release Notes
- OpenCppCoverage 64 bits version can debug 32 bits and 64 bits program.
- OpenCppCoverage 32 bits can only debug 32 bits program.
Changelog:
- Support executable created by Visual Studio 2017 compiler.
OpenCppCoverage 0.9.6
22/05/2017: This version is not yet compatible with Visual Studio 2017. A fix is under testing and should be available in the upcoming days.
Release Notes
- OpenCppCoverage 64 bits version can debug 32 bits and 64 bits program.
- OpenCppCoverage 32 bits can only debug 32 bits program.
Changelog:
- Optimized build is now supported.
- You can exclude a line based on a regular expression.
- Cobertura output format is valid against http://cobertura.sourceforge.net/xml/coverage-04.dtd.
- If the compiler generates a line not visible, this line is excluded from the coverage.
- /DEBUG:FASTLINK is now supported in Windows 7.
- Generated HTML files are now W3C compliant.
- Keep only the last name when using several --input_coverage flags.
- Override the output if it exists for HTML, cobertura and binary exports.
OpenCppCoverage 0.9.5.3
Release Notes
- OpenCppCoverage 64 bits version can debug 32 bits and 64 bits program.
- OpenCppCoverage 32 bits can only debug 32 bits program.
Changelog:
- Fix an issue with vstest.console.exe that load, unload and reload the same dll https://opencppcoverage.codeplex.com/discussions/655271.
OpenCppCoverage 0.9.5.2
Release Notes
- OpenCppCoverage 64 bits version can debug 32 bits and 64 bits program.
- OpenCppCoverage 32 bits can only debug 32 bits program.
Changelog:
- Support non ASCII characters in path. Fix https://opencppcoverage.codeplex.com/discussions/654290
- Support non ASCII characters in cobertura export and binary export.
OpenCppCoverage 0.9.5.1
Release Notes:
- OpenCppCoverage 64 bits version can debug 32 bits and 64 bits program.
- OpenCppCoverage 32 bits can only debug 32 bits program.
Changelog:
- Fix unified diff parsing ("invalid hunks differences").
OpenCppCoverage 0.9.5
Release Notes:
- OpenCppCoverage 64 bits version can debug 32 bits and 64 bits program.
- OpenCppCoverage 32 bits can only debug 32 bits program.
There is an issue with --unified_diff flag. For some unified diff files, you can have the error "invalid hunks differences". It will be fixed in the upcoming days.
Changelog:
- Unified diff file can be used to filter the file names and lines. See --unified_diff.
- Reduce JavaScript rendering duration for HTML export (Source file HTML). Disable syntax highlighting when the file is big.
- Add an option to continue after an C++ exception. See --continue_after_cpp_exception.
- In Cobertura export, add line-rate for coverage (global coverage).
OpenCppCoverage 0.9.4.1
Release Notes
- OpenCppCoverage 64 bits version can debug 32 bits and 64 bits program.
- OpenCppCoverage 32 bits can only debug 32 bits program.
Changelog:
- Reduce memory usage when using --cover_children with a lot of children processes: See issue http://opencppcoverage.codeplex.com/workitem/11.