mirror of
https://github.com/boostorg/beast.git
synced 2025-08-04 15:24:31 +02:00
Only run the tests under ubasan
This commit is contained in:
@@ -191,8 +191,8 @@ file(GLOB_RECURSE SERVER_INCLUDES
|
|||||||
)
|
)
|
||||||
|
|
||||||
add_subdirectory (test)
|
add_subdirectory (test)
|
||||||
if (NOT "${VARIANT}" STREQUAL "coverage")
|
|
||||||
|
if ((NOT "${VARIANT}" STREQUAL "coverage") AND
|
||||||
|
(NOT "${VARIANT}" STREQUAL "ubasan"))
|
||||||
add_subdirectory (example)
|
add_subdirectory (example)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
@@ -1,13 +1,16 @@
|
|||||||
# Part of Beast
|
# Part of Beast
|
||||||
|
|
||||||
add_subdirectory (benchmarks)
|
|
||||||
add_subdirectory (core)
|
add_subdirectory (core)
|
||||||
add_subdirectory (http)
|
add_subdirectory (http)
|
||||||
add_subdirectory (server)
|
|
||||||
add_subdirectory (websocket)
|
add_subdirectory (websocket)
|
||||||
add_subdirectory (zlib)
|
add_subdirectory (zlib)
|
||||||
|
|
||||||
if (NOT "${VARIANT}" STREQUAL "coverage")
|
if ((NOT "${VARIANT}" STREQUAL "coverage") AND
|
||||||
|
(NOT "${VARIANT}" STREQUAL "ubasan"))
|
||||||
|
|
||||||
|
add_subdirectory (benchmarks)
|
||||||
|
add_subdirectory (server)
|
||||||
|
|
||||||
GroupSources(extras/beast extras)
|
GroupSources(extras/beast extras)
|
||||||
GroupSources(include/beast beast)
|
GroupSources(include/beast beast)
|
||||||
GroupSources(test "/")
|
GroupSources(test "/")
|
||||||
|
@@ -1,7 +1,5 @@
|
|||||||
# Part of Beast
|
# Part of Beast
|
||||||
|
|
||||||
if (NOT "${VARIANT}" STREQUAL "coverage")
|
|
||||||
|
|
||||||
GroupSources(extras/beast extras)
|
GroupSources(extras/beast extras)
|
||||||
GroupSources(include/beast beast)
|
GroupSources(include/beast beast)
|
||||||
GroupSources(test/benchmarks "/")
|
GroupSources(test/benchmarks "/")
|
||||||
@@ -23,5 +21,3 @@ if (NOT "${VARIANT}" STREQUAL "coverage")
|
|||||||
${Boost_PROGRAM_OPTIONS_LIBRARY}
|
${Boost_PROGRAM_OPTIONS_LIBRARY}
|
||||||
${Boost_FILESYSTEM_LIBRARY}
|
${Boost_FILESYSTEM_LIBRARY}
|
||||||
)
|
)
|
||||||
|
|
||||||
endif()
|
|
||||||
|
@@ -1,7 +1,5 @@
|
|||||||
# Part of Beast
|
# Part of Beast
|
||||||
|
|
||||||
if (NOT "${VARIANT}" STREQUAL "coverage")
|
|
||||||
|
|
||||||
GroupSources(example/server-framework framework)
|
GroupSources(example/server-framework framework)
|
||||||
GroupSources(extras/beast extras)
|
GroupSources(extras/beast extras)
|
||||||
GroupSources(include/beast beast)
|
GroupSources(include/beast beast)
|
||||||
@@ -46,5 +44,3 @@ if (NOT "${VARIANT}" STREQUAL "coverage")
|
|||||||
if (OPENSSL_FOUND)
|
if (OPENSSL_FOUND)
|
||||||
target_link_libraries(server-test ${OPENSSL_LIBRARIES})
|
target_link_libraries(server-test ${OPENSSL_LIBRARIES})
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
endif()
|
|
||||||
|
Reference in New Issue
Block a user