Browse Source

Force ASAN with tests and make them passed when failed

master
Andrey Dotsenko 5 years ago
parent
commit
6f451ad0cf
2 changed files with 18 additions and 4 deletions
  1. +16
    -3
      tests/CMakeLists.txt
  2. +2
    -1
      tests/asan_test.cpp

+ 16
- 3
tests/CMakeLists.txt View File

@@ -31,13 +31,20 @@ function(add_testcase TESTNAME SOURCEFILES)

# add a new executable
add_executable(${TESTNAME} ${ARGV})
add_sanitizers(${TESTNAME})

# add a testcase for executable
add_test(${TESTNAME} ${TESTNAME})
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
@@ -45,8 +52,14 @@ endfunction(add_testcase)
find_package(Sanitizers)



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


+ 2
- 1
tests/asan_test.cpp View File

@@ -29,7 +29,8 @@ int
main(int argc, char **argv)
{
// Allocate a new array and delete it.
int *array = new int[argc];
int *array = new int[argc + 1];
array[argc] = 0;
delete[] array;

/* Access element of the deleted array. This will cause an memory error with


Loading…
Cancel
Save