[Lldb-commits] [lldb] r157278 - /lldb/trunk/test/functionalities/register/TestRegisters.py

Johnny Chen johnny.chen at apple.com
Tue May 22 12:41:53 PDT 2012


Author: johnny
Date: Tue May 22 14:41:53 2012
New Revision: 157278

URL: http://llvm.org/viewvc/llvm-project?rev=157278&view=rev
Log:
Fix a typo.

Modified:
    lldb/trunk/test/functionalities/register/TestRegisters.py

Modified: lldb/trunk/test/functionalities/register/TestRegisters.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/register/TestRegisters.py?rev=157278&r1=157277&r2=157278&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/register/TestRegisters.py (original)
+++ lldb/trunk/test/functionalities/register/TestRegisters.py Tue May 22 14:41:53 2012
@@ -74,7 +74,7 @@
         # Test reading of rax and eax.
         self.runCmd("register read rax eax")
 
-        # No write rax with a unique bit pattern and test that eax indeed represents the lower half of rax.
+        # Now write rax with a unique bit pattern and test that eax indeed represents the lower half of rax.
         self.runCmd("register write rax 0x1234567887654321")
         self.expect("expr -- ($rax & 0xffffffff) == $eax",
             substrs = ['true'])





More information about the lldb-commits mailing list