aboutsummaryrefslogtreecommitdiff
path: root/lldb/tools/lldb-test/SystemInitializerTest.cpp
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2020-01-21 14:55:13 -0800
committerJonas Devlieghere <jonas@devlieghere.com>2020-01-21 15:02:41 -0800
commit623c3c4cf96ba30ac3d653d8acf35a5c57c34bcd (patch)
tree13bd018464869f9ea93e298c99afe7ef517ca46f /lldb/tools/lldb-test/SystemInitializerTest.cpp
parent7745990dd93267d73e08ac5d9e5104645791a70e (diff)
downloadllvm-623c3c4cf96ba30ac3d653d8acf35a5c57c34bcd.zip
llvm-623c3c4cf96ba30ac3d653d8acf35a5c57c34bcd.tar.gz
llvm-623c3c4cf96ba30ac3d653d8acf35a5c57c34bcd.tar.bz2
[lldb/Plugin] Rename UBSanRuntime for consistency with plugin (NFC)
Renames UBSanRuntime to InstrumentationRuntimeUBSan to be consistent with the directory structure and plugin name.
Diffstat (limited to 'lldb/tools/lldb-test/SystemInitializerTest.cpp')
-rw-r--r--lldb/tools/lldb-test/SystemInitializerTest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/tools/lldb-test/SystemInitializerTest.cpp b/lldb/tools/lldb-test/SystemInitializerTest.cpp
index 0ea4714..280a118 100644
--- a/lldb/tools/lldb-test/SystemInitializerTest.cpp
+++ b/lldb/tools/lldb-test/SystemInitializerTest.cpp
@@ -47,7 +47,7 @@
#include "Plugins/InstrumentationRuntime/ASan/InstrumentationRuntimeASan.h"
#include "Plugins/InstrumentationRuntime/MainThreadChecker/MainThreadCheckerRuntime.h"
#include "Plugins/InstrumentationRuntime/TSan/InstrumentationRuntimeTSan.h"
-#include "Plugins/InstrumentationRuntime/UBSan/UBSanRuntime.h"
+#include "Plugins/InstrumentationRuntime/UBSan/InstrumentationRuntimeUBSan.h"
#include "Plugins/JITLoader/GDB/JITLoaderGDB.h"
#include "Plugins/Language/CPlusPlus/CPlusPlusLanguage.h"
#include "Plugins/Language/ObjC/ObjCLanguage.h"
@@ -195,7 +195,7 @@ llvm::Error SystemInitializerTest::Initialize() {
MemoryHistoryASan::Initialize();
InstrumentationRuntimeASan::Initialize();
InstrumentationRuntimeTSan::Initialize();
- UndefinedBehaviorSanitizerRuntime::Initialize();
+ InstrumentationRuntimeUBSan::Initialize();
MainThreadCheckerRuntime::Initialize();
SymbolVendorELF::Initialize();
@@ -288,7 +288,7 @@ void SystemInitializerTest::Terminate() {
MemoryHistoryASan::Terminate();
InstrumentationRuntimeASan::Terminate();
InstrumentationRuntimeTSan::Terminate();
- UndefinedBehaviorSanitizerRuntime::Terminate();
+ InstrumentationRuntimeUBSan::Terminate();
MainThreadCheckerRuntime::Terminate();
wasm::SymbolVendorWasm::Terminate();
SymbolVendorELF::Terminate();