Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
json
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
json
Commits
2dda87c3
Unverified
Commit
2dda87c3
authored
Feb 09, 2018
by
Niels Lohmann
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/coverage_multi' into develop
parents
83db7876
74675dd6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
.travis.yml
.travis.yml
+1
-1
Makefile
Makefile
+1
-1
test/CMakeLists.txt
test/CMakeLists.txt
+4
-1
No files found.
.travis.yml
View file @
2dda87c3
...
...
@@ -99,7 +99,7 @@ matrix:
before_script
:
-
pip install --user cpp-coveralls
after_success
:
-
coveralls --build-root test --include single_
header
/nlohmann --gcov 'gcov-4.9' --gcov-options '\-lp'
-
coveralls --build-root test --include single_
include
/nlohmann --gcov 'gcov-4.9' --gcov-options '\-lp'
env
:
-
COMPILER=g++-4.9
-
CMAKE_OPTIONS=-DJSON_Coverage=ON
...
...
Makefile
View file @
2dda87c3
...
...
@@ -81,7 +81,7 @@ clean:
coverage
:
mkdir
build_coverage
cd
build_coverage
;
CXX
=
g++-5 cmake ..
-GNinja
-DJSON_Coverage
=
ON
cd
build_coverage
;
CXX
=
g++-5 cmake ..
-GNinja
-DJSON_Coverage
=
ON
-DJSON_MultipleHeaders
=
ON
cd
build_coverage
;
ninja
cd
build_coverage
;
ctest
-j10
cd
build_coverage
;
ninja lcov_html
...
...
test/CMakeLists.txt
View file @
2dda87c3
...
...
@@ -40,11 +40,14 @@ if(JSON_Coverage)
string
(
REGEX MATCH
"^[0-9]+"
GCC_VERSION
"
${
CMAKE_CXX_COMPILER_VERSION
}
"
)
find_program
(
GCOV_BIN NAMES gcov-
${
GCC_VERSION
}
gcov HINTS
${
COMPILER_PATH
}
)
# collect all source files from the chosen include dir
file
(
GLOB_RECURSE SOURCE_FILES
${
NLOHMANN_JSON_INCLUDE_BUILD_DIR
}
*.hpp
)
# add target to collect coverage information and generate HTML file
# (filter script from https://stackoverflow.com/a/43726240/266378)
add_custom_target
(
lcov_html
COMMAND lcov --directory . --capture --output-file json.info --gcov-tool
${
GCOV_BIN
}
--rc lcov_branch_coverage=1
COMMAND lcov -e json.info
${
CMAKE_SOURCE_DIR
}
/single_include/nlohmann/json.hpp
--output-file json.info.filtered --rc lcov_branch_coverage=1
COMMAND lcov -e json.info
${
SOURCE_FILES
}
--output-file json.info.filtered --rc lcov_branch_coverage=1
COMMAND
${
CMAKE_SOURCE_DIR
}
/test/thirdparty/imapdl/filterbr.py json.info.filtered > json.info.filtered.noexcept
COMMAND genhtml --title
"JSON for Modern C++"
--legend --demangle-cpp --output-directory html --show-details --branch-coverage json.info.filtered.noexcept
COMMENT
"Generating HTML report test/html/index.html"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment