[Lldb-commits] [lldb] r180952 - Changing the test to use eax rather than rax for compatibility with i386.
Ashok Thirumurthi
ashok.thirumurthi at intel.com
Thu May 2 14:15:23 PDT 2013
Author: athirumu
Date: Thu May 2 16:15:23 2013
New Revision: 180952
URL: http://llvm.org/viewvc/llvm-project?rev=180952&view=rev
Log:
Changing the test to use eax rather than rax for compatibility with i386.
Modified:
lldb/trunk/test/functionalities/inferior-crashing/TestInferiorCrashing.py
Modified: lldb/trunk/test/functionalities/inferior-crashing/TestInferiorCrashing.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/inferior-crashing/TestInferiorCrashing.py?rev=180952&r1=180951&r2=180952&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/inferior-crashing/TestInferiorCrashing.py (original)
+++ lldb/trunk/test/functionalities/inferior-crashing/TestInferiorCrashing.py Thu May 2 16:15:23 2013
@@ -115,8 +115,8 @@ class CrashingInferiorTestCase(TestBase)
stop_reason = 'stop reason = invalid address'
# lldb should be able to read from registers from the inferior after crashing.
- self.expect("register read rax",
- substrs = ['rax = 0x'])
+ self.expect("register read eax",
+ substrs = ['eax = 0x'])
def inferior_crashing_expr(self):
"""Test that the lldb expression interpreter can read symbols after crashing."""
More information about the lldb-commits
mailing list