mirror of
https://github.com/boostorg/beast.git
synced 2025-08-03 14:54:32 +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)
|
||||
if (NOT "${VARIANT}" STREQUAL "coverage")
|
||||
|
||||
if ((NOT "${VARIANT}" STREQUAL "coverage") AND
|
||||
(NOT "${VARIANT}" STREQUAL "ubasan"))
|
||||
add_subdirectory (example)
|
||||
endif()
|
||||
|
||||
|
||||
|
@@ -1,13 +1,16 @@
|
||||
# Part of Beast
|
||||
|
||||
add_subdirectory (benchmarks)
|
||||
add_subdirectory (core)
|
||||
add_subdirectory (http)
|
||||
add_subdirectory (server)
|
||||
add_subdirectory (websocket)
|
||||
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(include/beast beast)
|
||||
GroupSources(test "/")
|
||||
|
@@ -1,7 +1,5 @@
|
||||
# Part of Beast
|
||||
|
||||
if (NOT "${VARIANT}" STREQUAL "coverage")
|
||||
|
||||
GroupSources(extras/beast extras)
|
||||
GroupSources(include/beast beast)
|
||||
GroupSources(test/benchmarks "/")
|
||||
@@ -23,5 +21,3 @@ if (NOT "${VARIANT}" STREQUAL "coverage")
|
||||
${Boost_PROGRAM_OPTIONS_LIBRARY}
|
||||
${Boost_FILESYSTEM_LIBRARY}
|
||||
)
|
||||
|
||||
endif()
|
||||
|
@@ -1,7 +1,5 @@
|
||||
# Part of Beast
|
||||
|
||||
if (NOT "${VARIANT}" STREQUAL "coverage")
|
||||
|
||||
GroupSources(example/server-framework framework)
|
||||
GroupSources(extras/beast extras)
|
||||
GroupSources(include/beast beast)
|
||||
@@ -46,5 +44,3 @@ if (NOT "${VARIANT}" STREQUAL "coverage")
|
||||
if (OPENSSL_FOUND)
|
||||
target_link_libraries(server-test ${OPENSSL_LIBRARIES})
|
||||
endif()
|
||||
|
||||
endif()
|
||||
|
Reference in New Issue
Block a user