summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/ctest_memcheck/testUndefinedBehaviorSanitizer.cmake
blob: ba6122d6c2a8a70bdaf27fe6e25d7b56794d9f6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# this file simulates a program that has been built with
# UndefinedBehaviorSanitizer options

message("UBSAN_OPTIONS = [$ENV{UBSAN_OPTIONS}]")
string(REGEX REPLACE ".*log_path=\'([^\']*)\'.*" "\\1" LOG_FILE "$ENV{UBSAN_OPTIONS}")
message("LOG_FILE=[${LOG_FILE}]")

# if we are not asked to simulate address sanitizer don't do it
if(NOT "$ENV{UBSAN_OPTIONS}]" MATCHES "simulate_sanitizer.1")
  return()
endif()
# clear the log file
file(REMOVE "${LOG_FILE}.2343")

# create an error like undefined behavior santizer creates;
# these names come from ubsan_diag.cc and ubsan_handlers.cc
# in llvm

file(APPEND "${LOG_FILE}.2343"
"<unknown>: runtime error: left shift of negative value -256
")