[lldb] Update outdated comment in TestDyldTrieSymbols.py
authorJonas Devlieghere <jonas@devlieghere.com>
Mon, 7 Feb 2022 16:11:30 +0000 (08:11 -0800)
committerJonas Devlieghere <jonas@devlieghere.com>
Mon, 7 Feb 2022 16:13:54 +0000 (08:13 -0800)
After aed965d55d46 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.

lldb/test/API/macosx/dyld-trie-symbols/TestDyldTrieSymbols.py

index 6f2f1c5..71598e9 100644 (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")