[Lldb-commits] [lldb] r130806 - /lldb/trunk/test/help/TestHelp.py

Johnny Chen johnny.chen at apple.com
Tue May 3 16:55:05 PDT 2011


Author: johnny
Date: Tue May  3 18:55:05 2011
New Revision: 130806

URL: http://llvm.org/viewvc/llvm-project?rev=130806&view=rev
Log:
Add comments about 'image' being an alias for 'target modules'.

Modified:
    lldb/trunk/test/help/TestHelp.py

Modified: lldb/trunk/test/help/TestHelp.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/help/TestHelp.py?rev=130806&r1=130805&r2=130806&view=diff
==============================================================================
--- lldb/trunk/test/help/TestHelp.py (original)
+++ lldb/trunk/test/help/TestHelp.py Tue May  3 18:55:05 2011
@@ -69,6 +69,7 @@
 
     def test_help_image_dump_symtab_should_not_crash(self):
         """Command 'help image dump symtab' should not crash lldb."""
+        # 'image' is an alias for 'target modules'.
         self.expect("help image dump symtab",
             substrs = ['dump symtab',
                        'sort-order'])
@@ -83,6 +84,7 @@
 
     def test_help_image_du_line_should_work(self):
         """Command 'help image du line' is not ambiguous and should work."""
+        # 'image' is an alias for 'target modules'.
         self.expect("help image du line",
             substrs = ['Dump the debug symbol file for one or more target modules'])
 





More information about the lldb-commits mailing list