Форматирование кода
This commit is contained in:
parent
dfa7faf459
commit
f1abee3365
@ -24,7 +24,6 @@
|
|||||||
# 2015 RWTH Aachen University, Federal Republic of Germany
|
# 2015 RWTH Aachen University, Federal Republic of Germany
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# project information
|
# project information
|
||||||
#
|
#
|
||||||
@ -35,15 +34,11 @@ cmake_minimum_required(VERSION 2.8)
|
|||||||
# project name
|
# project name
|
||||||
project("CMake-sanitizers")
|
project("CMake-sanitizers")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# cmake configuration
|
# cmake configuration
|
||||||
#
|
#
|
||||||
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH})
|
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH})
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# add tests
|
# add tests
|
||||||
#
|
#
|
||||||
|
@ -42,8 +42,6 @@ function(add_sanitized_testcase TESTNAME SOURCEFILES)
|
|||||||
add_sanitizers(${TESTNAME})
|
add_sanitizers(${TESTNAME})
|
||||||
endfunction(add_sanitized_testcase)
|
endfunction(add_sanitized_testcase)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
set(SANITIZE_ADDRESS TRUE)
|
set(SANITIZE_ADDRESS TRUE)
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -51,17 +49,10 @@ set(SANITIZE_ADDRESS TRUE)
|
|||||||
#
|
#
|
||||||
find_package(Sanitizers)
|
find_package(Sanitizers)
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# add testcases
|
# add testcases
|
||||||
#
|
#
|
||||||
add_sanitized_testcase("asan_test_cpp" asan_test.cpp)
|
add_sanitized_testcase("asan_test_cpp" asan_test.cpp)
|
||||||
add_sanitized_testcase("shortest_ext_test_cpp" shortest.ext.test.cpp)
|
add_sanitized_testcase("shortest_ext_test_cpp" shortest.ext.test.cpp)
|
||||||
|
|
||||||
set_tests_properties(
|
set_tests_properties("asan_test_cpp" "shortest_ext_test_cpp" PROPERTIES WILL_FAIL TRUE)
|
||||||
"asan_test_cpp"
|
|
||||||
"shortest_ext_test_cpp"
|
|
||||||
PROPERTIES
|
|
||||||
WILL_FAIL TRUE
|
|
||||||
)
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user