Put slow tests back for coverage builds

This commit is contained in:
Vinnie Falco
2017-06-19 20:23:33 -07:00
parent 0a674b1b52
commit 3efe8cc9dd
3 changed files with 3 additions and 2 deletions

View File

@ -9,6 +9,7 @@ Version 62:
* Avoid explicit operator bool for error
* Add http::is_fields trait
* Squelch harmless not_connected errors
* Put slow tests back for coverage builds
API Changes:

View File

@ -103,7 +103,7 @@ endfunction()
if ("${VARIANT}" STREQUAL "coverage")
set(CMAKE_CXX_FLAGS
"${CMAKE_CXX_FLAGS} -DBEAST_NO_SLOW_TESTS=1 -fprofile-arcs -ftest-coverage")
"${CMAKE_CXX_FLAGS} -fprofile-arcs -ftest-coverage")
set (CMAKE_BUILD_TYPE RELWITHDEBINFO)
set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -lgcov")

View File

@ -56,7 +56,7 @@ variant coverage
:
release
:
<cxxflags>"-DBEAST_NO_SLOW_TESTS=1 -fprofile-arcs -ftest-coverage"
<cxxflags>"-fprofile-arcs -ftest-coverage"
<linkflags>"-lgcov"
;