mirror of
https://gitee.com/openharmony/third_party_benchmark
synced 2024-11-23 15:30:48 +00:00
36c1eb6975
This patch adds a `coverage` target that allows coverage statisitics to be retrieved for the project. It requires that lcov and gcov is installed and that the generator is unix makefiles but this can be improved upon in future releases. To make it work use the coverage build type: ``` cmake -DCMAKE_BUILD_TYPE=Coverage . make coverage ```
47 lines
469 B
Plaintext
47 lines
469 B
Plaintext
*.a
|
|
*.so
|
|
*.so.?*
|
|
*.dll
|
|
*.exe
|
|
*.dylib
|
|
*.cmake
|
|
!/cmake/*.cmake
|
|
*~
|
|
*.pyc
|
|
__pycache__
|
|
|
|
# lcov
|
|
*.lcov
|
|
/lcov
|
|
|
|
# cmake files.
|
|
/Testing
|
|
CMakeCache.txt
|
|
CMakeFiles/
|
|
cmake_install.cmake
|
|
|
|
# makefiles.
|
|
Makefile
|
|
|
|
# in-source build.
|
|
bin/
|
|
lib/
|
|
/test/*_test
|
|
|
|
# exuberant ctags.
|
|
tags
|
|
|
|
# YouCompleteMe configuration.
|
|
.ycm_extra_conf.pyc
|
|
|
|
# ninja generated files.
|
|
.ninja_deps
|
|
.ninja_log
|
|
build.ninja
|
|
install_manifest.txt
|
|
rules.ninja
|
|
|
|
# out-of-source build top-level folders.
|
|
build/
|
|
_build/
|