mirror of
https://github.com/intel/llvm.git
synced 2026-02-05 04:46:27 +08:00
[LLDB][MIPS] Fix TestDisassembleBreakpoint
Patch by Nitesh Jain Reviewers: clayborg, jaydeep. Subscribers: bhushan, mohit.bhakkad, sagar, lldb-commits. Differential Revision: http://reviews.llvm.org/D17597 llvm-svn: 262819
This commit is contained in:
@@ -42,7 +42,7 @@ class DisassemblyTestCase(TestBase):
|
||||
instructions = [' add ', ' ldr ', ' str ']
|
||||
elif re.match("mips" , arch):
|
||||
breakpoint_opcodes = ["break"]
|
||||
instructions = ['lw', 'sw', 'jr']
|
||||
instructions = ['lw', 'sw']
|
||||
else:
|
||||
# TODO please add your arch here
|
||||
self.fail('unimplemented for arch = "{arch}"'.format(arch=self.getArchitecture()))
|
||||
|
||||
Reference in New Issue
Block a user