forked from OSchip/llvm-project
[lldb] Update outdated comment in TestDyldTrieSymbols.py
After aed965d55d
we no longer demangle and store the full name. The
test was updated accordingly but the comment still specified that we
should be able to find the symbol by its full demangled name.
This commit is contained in:
parent
c45a99f36b
commit
d63dfa14d6
|
@ -37,8 +37,8 @@ class DyldTrieSymbolsTestCase(TestBase):
|
|||
unstripped_foo_symbols = unstripped_target.FindSymbols("foo")
|
||||
self.assertEqual(unstripped_foo_symbols.GetSize(), 1)
|
||||
|
||||
# make sure we can look up the mangled name, demangled base name,
|
||||
# demangled name with argument.
|
||||
# Make sure we can look up the mangled name and the demangled base
|
||||
# name.
|
||||
unstripped_Z3pat_symbols = unstripped_target.FindSymbols("_Z3pati")
|
||||
self.assertEqual(unstripped_Z3pat_symbols.GetSize(), 1)
|
||||
unstripped_pat_symbols = unstripped_target.FindSymbols("pat")
|
||||
|
|
Loading…
Reference in New Issue