forked from OSchip/llvm-project
[LLDB][MIPS] Skip TestGdbRemoteSingleStep and TestGdbRemote_vCont.py.
The step count depends on code generated by compiler (GCC/Clang). It will also vary for different MIPS arch variant. Hence skipping these test for MIPS. Subscribers: jaydeep, bhushan, lldb-commits, slthakur llvm-svn: 305383
This commit is contained in:
parent
941a49b6d6
commit
1680ea4c1f
|
@ -31,6 +31,7 @@ class TestGdbRemoteSingleStep(gdbremote_testcase.GdbRemoteTestCaseBase):
|
|||
"arm",
|
||||
"aarch64"],
|
||||
bugnumber="llvm.org/pr24739")
|
||||
@skipIf(triple='^mips')
|
||||
def test_single_step_only_steps_one_instruction_with_s_llgs(self):
|
||||
self.init_llgs_test()
|
||||
self.build()
|
||||
|
|
|
@ -108,6 +108,7 @@ class TestGdbRemote_vCont(gdbremote_testcase.GdbRemoteTestCaseBase):
|
|||
"arm",
|
||||
"aarch64"],
|
||||
bugnumber="llvm.org/pr24739")
|
||||
@skipIf(triple='^mips')
|
||||
def test_single_step_only_steps_one_instruction_with_Hc_vCont_s_llgs(self):
|
||||
self.init_llgs_test()
|
||||
self.build()
|
||||
|
@ -136,6 +137,7 @@ class TestGdbRemote_vCont(gdbremote_testcase.GdbRemoteTestCaseBase):
|
|||
"arm",
|
||||
"aarch64"],
|
||||
bugnumber="llvm.org/pr24739")
|
||||
@skipIf(triple='^mips')
|
||||
def test_single_step_only_steps_one_instruction_with_vCont_s_thread_llgs(
|
||||
self):
|
||||
self.init_llgs_test()
|
||||
|
|
Loading…
Reference in New Issue