hyperledger-archives / iroha

Iroha - A simple, decentralized ledger
http://iroha.tech
Apache License 2.0
988 stars 298 forks source link

Fix coverage generation on macOS #2153

Closed neewy closed 5 years ago

neewy commented 5 years ago

Description of the Change

Now СMake scripts delete from coverage report:

Benefits

More precise coverage data

Possible Drawbacks

None

Usage Examples or Tests [optional]

cmake -H. -Bbuild -DCOVERAGE=ON;
cmake --build build -- -j8;
cmake --build build --target coverage.init.info;
cd build;
ctest .;
cd ..;
cmake --build build --target coverage.info;
genhtml ./build/reports/coverage.info --output-directory out

Alternate Designs [optional]

neewy commented 5 years ago

Tested on macOS Mojave and Ubuntu 16.04 (report available here https://0x0.st/zH3p.gz) @lebdron