diff options
| author | Pavel Labath <pavel@labath.sk> | 2019-05-07 16:13:10 +0000 |
|---|---|---|
| committer | Pavel Labath <pavel@labath.sk> | 2019-05-07 16:13:10 +0000 |
| commit | 7ff0c0ddd309e3a2aa9a4ad5d3a043ca52eb04d7 (patch) | |
| tree | 22c25701fd04c78b073799e25f4dad2d870b3a5a | |
| parent | fe71b92e0a55ecbe2a1055462815a4eca9d3ae06 (diff) | |
| download | bcm5719-llvm-7ff0c0ddd309e3a2aa9a4ad5d3a043ca52eb04d7.tar.gz bcm5719-llvm-7ff0c0ddd309e3a2aa9a4ad5d3a043ca52eb04d7.zip | |
Fixup r360161
Remove SymbolVendorMacOSX from the test, as this plugin is not available
on non-mac platforms, and it does not seem to be necessary anyway.
Declare inlined-functions.yaml as an input of the test in cmake.
llvm-svn: 360169
| -rw-r--r-- | lldb/unittests/Symbol/CMakeLists.txt | 1 | ||||
| -rw-r--r-- | lldb/unittests/Symbol/TestLineEntry.cpp | 3 |
2 files changed, 1 insertions, 3 deletions
diff --git a/lldb/unittests/Symbol/CMakeLists.txt b/lldb/unittests/Symbol/CMakeLists.txt index f5ad662e688..1fbb1d87167 100644 --- a/lldb/unittests/Symbol/CMakeLists.txt +++ b/lldb/unittests/Symbol/CMakeLists.txt @@ -18,5 +18,6 @@ add_lldb_unittest(SymbolTests set(test_inputs basic-call-frame-info.yaml + inlined-functions.yaml ) add_unittest_inputs(SymbolTests "${test_inputs}") diff --git a/lldb/unittests/Symbol/TestLineEntry.cpp b/lldb/unittests/Symbol/TestLineEntry.cpp index e418dfbd8d1..c032335b7ea 100644 --- a/lldb/unittests/Symbol/TestLineEntry.cpp +++ b/lldb/unittests/Symbol/TestLineEntry.cpp @@ -14,7 +14,6 @@ #include "Plugins/ObjectFile/Mach-O/ObjectFileMachO.h" #include "Plugins/SymbolFile/DWARF/DWARFASTParserClang.h" #include "Plugins/SymbolFile/DWARF/SymbolFileDWARF.h" -#include "Plugins/SymbolVendor/MacOSX/SymbolVendorMacOSX.h" #include "TestingSupport/TestUtilities.h" #include "lldb/Symbol/ClangASTContext.h" @@ -38,7 +37,6 @@ public: FileSystem::Initialize(); HostInfo::Initialize(); ObjectFileMachO::Initialize(); - SymbolVendorMacOSX::Initialize(); SymbolFileDWARF::Initialize(); ClangASTContext::Initialize(); } @@ -46,7 +44,6 @@ public: void TearDown() override { ClangASTContext::Terminate(); SymbolFileDWARF::Terminate(); - SymbolVendorMacOSX::Terminate(); ObjectFileMachO::Terminate(); HostInfo::Terminate(); FileSystem::Terminate(); |

