i386 and i686 are equivalent, update the test accordingly.

llvm-svn: 246783
This commit is contained in:
Zachary Turner 2015-09-03 16:41:31 +00:00
parent 08ef462d15
commit c7a52d594a
1 changed files with 1 additions and 1 deletions

View File

@ -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"]: