[clang] b4a8999 - Revert "[test][clang-repl][Orc] Lsan report workaround"

Lang Hames via cfe-commits cfe-commits at lists.llvm.org
Wed Sep 27 11:45:20 PDT 2023


Author: Lang Hames
Date: 2023-09-27T11:44:33-07:00
New Revision: b4a899999a5edf08af9e03324274ebdce7e032ce

URL: https://github.com/llvm/llvm-project/commit/b4a899999a5edf08af9e03324274ebdce7e032ce
DIFF: https://github.com/llvm/llvm-project/commit/b4a899999a5edf08af9e03324274ebdce7e032ce.diff

LOG: Revert "[test][clang-repl][Orc] Lsan report workaround"

This reverts commit b4b4d8bd61d8de946e130beff5049a4ab13e155d. Lsan has been
disabled in the unittest itself in 47625fea5e376082fca65d0ac644f07957605d86,
so this workaround is no longer needed.

Added: 
    

Modified: 
    clang/unittests/Interpreter/ExceptionTests/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/clang/unittests/Interpreter/ExceptionTests/CMakeLists.txt b/clang/unittests/Interpreter/ExceptionTests/CMakeLists.txt
index fe38eea3155a07c..5a6597d1b6728f9 100644
--- a/clang/unittests/Interpreter/ExceptionTests/CMakeLists.txt
+++ b/clang/unittests/Interpreter/ExceptionTests/CMakeLists.txt
@@ -23,7 +23,4 @@ target_link_libraries(ClangReplInterpreterExceptionTests PUBLIC
   )
 add_dependencies(ClangReplInterpreterExceptionTests clang-resource-headers)
 
-# export_executable_symbols triggers Lsan report.
-if (NOT LLVM_USE_SANITIZER MATCHES ".*Address.*")
-  export_executable_symbols(ClangReplInterpreterExceptionTests)
-endif()
+export_executable_symbols(ClangReplInterpreterExceptionTests)


        


More information about the cfe-commits mailing list