[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:
Jonas Devlieghere 2022-02-07 08:11:30 -08:00
parent c45a99f36b
commit d63dfa14d6
1 changed files with 2 additions and 2 deletions

View File

@ -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")