We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9243b1b commit 47625feCopy full SHA for 47625fe
clang/unittests/Interpreter/ExceptionTests/InterpreterExceptionTest.cpp
@@ -29,6 +29,14 @@
29
#include "gmock/gmock.h"
30
#include "gtest/gtest.h"
31
32
+// Disable LSan for this test.
33
+// FIXME: Re-enable this once we track down the leak described in
34
+// https://llvm.org/github.com/llvm/llvm-project/issues/67586.
35
+#if LLVM_ADDRESS_SANITIZER_BUILD || LLVM_HWADDRESS_SANITIZER_BUILD
36
+#include <sanitizer/lsan_interface.h>
37
+LLVM_ATTRIBUTE_USED int __lsan_is_turned_off() { return 1; }
38
+#endif
39
+
40
using namespace clang;
41
42
namespace {
0 commit comments