* Add travis sanitizers tests. * Add gcc-7 in Travis. * Add SANITIZER_PATH for CMake. * Enable sanitizer tests in Travis. * Fix memory leaks in tests. * Fix all memory leaks reported by Address Sanitizer. * tests/cpp/helpers.h/CreateDMatrix now returns raw pointer.
14 lines
362 B
CMake
14 lines
362 B
CMake
set(LSan_LIB_NAME lsan)
|
|
|
|
find_library(LSan_LIBRARY
|
|
NAMES liblsan.so liblsan.so.0 liblsan.so.0.0.0
|
|
PATHS ${SANITIZER_PATH} /usr/lib64 /usr/lib /usr/local/lib64 /usr/local/lib ${CMAKE_PREFIX_PATH}/lib)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(LSan DEFAULT_MSG
|
|
LSan_LIBRARY)
|
|
|
|
mark_as_advanced(
|
|
LSan_LIBRARY
|
|
LSan_LIB_NAME)
|