diff options
author | Michael Sartain <mikesart@valvesoftware.com> | 2013-05-17 02:00:55 +0000 |
---|---|---|
committer | Michael Sartain <mikesart@valvesoftware.com> | 2013-05-17 02:00:55 +0000 |
commit | adeab5086e9f70d378734c7dbbcc2ae57a588a2a (patch) | |
tree | 4ecf326e3164c16680be798ebd7b9488940e5405 /lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp | |
parent | af3753eb3a78ad020c6ffaead99423eca3da46f5 (diff) | |
download | bcm5719-llvm-adeab5086e9f70d378734c7dbbcc2ae57a588a2a.tar.gz bcm5719-llvm-adeab5086e9f70d378734c7dbbcc2ae57a588a2a.zip |
Comment out ObjectFileELF::GetModuleSpecifications() function until I can debug where it's causing tests to fail.
llvm-svn: 182069
Diffstat (limited to 'lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp')
-rw-r--r-- | lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp b/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp index ec3e184df63..31f1f28d05b 100644 --- a/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp +++ b/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp @@ -243,8 +243,11 @@ ObjectFileELF::GetModuleSpecifications (const lldb_private::FileSpec& file, lldb::offset_t length, lldb_private::ModuleSpecList &specs) { +// FIXME: mikesart@valvesoftware.com +// Implementing this function has broken several tests. Specifically this one: +// Python dotest.py --executable <path-to-lldb> -p TestCallStdStringFunction.py const size_t initial_count = specs.GetSize(); - +#if 0 if (ObjectFileELF::MagicBytesMatch(data_sp, 0, data_sp->GetByteSize())) { DataExtractor data; @@ -269,6 +272,7 @@ ObjectFileELF::GetModuleSpecifications (const lldb_private::FileSpec& file, } } } +#endif return specs.GetSize() - initial_count; } |