Changing the test to use eax rather than rax for compatibility with i386.

llvm-svn: 180952
This commit is contained in:
Ashok Thirumurthi 2013-05-02 21:15:23 +00:00
parent af2c3ddf0d
commit 759a217dab
1 changed files with 2 additions and 2 deletions

View File

@ -115,8 +115,8 @@ class CrashingInferiorTestCase(TestBase):
stop_reason = 'stop reason = invalid address' stop_reason = 'stop reason = invalid address'
# lldb should be able to read from registers from the inferior after crashing. # lldb should be able to read from registers from the inferior after crashing.
self.expect("register read rax", self.expect("register read eax",
substrs = ['rax = 0x']) substrs = ['eax = 0x'])
def inferior_crashing_expr(self): def inferior_crashing_expr(self):
"""Test that the lldb expression interpreter can read symbols after crashing.""" """Test that the lldb expression interpreter can read symbols after crashing."""