Форматирование кода

This commit is contained in:
Andrei Astafev 2020-04-11 10:11:02 +03:00
parent dfa7faf459
commit f1abee3365
2 changed files with 9 additions and 23 deletions

View File

@ -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
# #

View File

@ -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
)