[Lldb-commits] [lldb] r246783 - i386 and i686 are equivalent, update the test accordingly.

Zachary Turner via lldb-commits lldb-commits at lists.llvm.org
Thu Sep 3 09:41:31 PDT 2015


Author: zturner
Date: Thu Sep  3 11:41:31 2015
New Revision: 246783

URL: http://llvm.org/viewvc/llvm-project?rev=246783&view=rev
Log:
i386 and i686 are equivalent, update the test accordingly.

Modified:
    lldb/trunk/test/functionalities/disassembly/TestDisassembleBreakpoint.py

Modified: lldb/trunk/test/functionalities/disassembly/TestDisassembleBreakpoint.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/disassembly/TestDisassembleBreakpoint.py?rev=246783&r1=246782&r2=246783&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/disassembly/TestDisassembleBreakpoint.py (original)
+++ lldb/trunk/test/functionalities/disassembly/TestDisassembleBreakpoint.py Thu Sep  3 11:41:31 2015
@@ -38,7 +38,7 @@ class DisassemblyTestCase(TestBase):
         disassembly = self.res.GetOutput()
 
         # ARCH, if not specified, defaults to x86_64.
-        if self.getArchitecture() in ["", 'x86_64', 'i386']:
+        if self.getArchitecture() in ["", 'x86_64', 'i386', 'i686']:
             breakpoint_opcodes = ["int3"]
             instructions = [' mov', ' addl ', 'ret']
         elif self.getArchitecture() in ["arm", "aarch64"]:




More information about the lldb-commits mailing list