Force ASAN with tests and make them passed when failed

This commit is contained in:
Andrey Dotsenko 2018-08-24 17:56:13 +03:00
parent 6947cff3a9
commit 6f451ad0cf
2 changed files with 18 additions and 4 deletions

View File

@ -31,22 +31,35 @@ function(add_testcase TESTNAME SOURCEFILES)
# add a new executable # add a new executable
add_executable(${TESTNAME} ${ARGV}) add_executable(${TESTNAME} ${ARGV})
add_sanitizers(${TESTNAME})
# add a testcase for executable # add a testcase for executable
add_test(${TESTNAME} ${TESTNAME}) add_test(${TESTNAME} ${TESTNAME})
endfunction(add_testcase) endfunction(add_testcase)
# Function to add testcases with asan enabled.
function(add_sanitized_testcase TESTNAME SOURCEFILES)
add_testcase(${TESTNAME} ${SOURCEFILES})
add_sanitizers(${TESTNAME})
endfunction(add_sanitized_testcase)
set(SANITIZE_ADDRESS TRUE)
# #
# search for sanitizers # search for sanitizers
# #
find_package(Sanitizers) find_package(Sanitizers)
# #
# add testcases # add testcases
# #
add_testcase("asan_test_cpp" asan_test.cpp) add_sanitized_testcase("asan_test_cpp" asan_test.cpp)
set_tests_properties(
"asan_test_cpp"
PROPERTIES
WILL_FAIL TRUE
)

View File

@ -29,7 +29,8 @@ int
main(int argc, char **argv) main(int argc, char **argv)
{ {
// Allocate a new array and delete it. // Allocate a new array and delete it.
int *array = new int[argc]; int *array = new int[argc + 1];
array[argc] = 0;
delete[] array; delete[] array;
/* Access element of the deleted array. This will cause an memory error with /* Access element of the deleted array. This will cause an memory error with