From adeab5086e9f70d378734c7dbbcc2ae57a588a2a Mon Sep 17 00:00:00 2001 From: Michael Sartain Date: Fri, 17 May 2013 02:00:55 +0000 Subject: Comment out ObjectFileELF::GetModuleSpecifications() function until I can debug where it's causing tests to fail. llvm-svn: 182069 --- lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp') 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 -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; } -- cgit v1.2.3