forked from OSchip/llvm-project
i386 and i686 are equivalent, update the test accordingly.
llvm-svn: 246783
This commit is contained in:
parent
08ef462d15
commit
c7a52d594a
|
@ -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"]:
|
||||
|
|
Loading…
Reference in New Issue