mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-08 11:36:08 +00:00

This patch has been causing LLDB test failures on ObjC tests. A test log may still be available here: http://lab.llvm.org:8080/green/view/LLDB/job/lldb/1650/ This reverts commit r314038. llvm-svn: 314122
41 lines
1.2 KiB
Python
41 lines
1.2 KiB
Python
from __future__ import print_function
|
|
|
|
|
|
import gdbremote_testcase
|
|
from lldbsuite.test.decorators import *
|
|
from lldbsuite.test.lldbtest import *
|
|
from lldbsuite.test import lldbutil
|
|
|
|
|
|
class TestGdbRemoteSingleStep(gdbremote_testcase.GdbRemoteTestCaseBase):
|
|
|
|
mydir = TestBase.compute_mydir(__file__)
|
|
|
|
@debugserver_test
|
|
def test_single_step_only_steps_one_instruction_with_s_debugserver(self):
|
|
self.init_debugserver_test()
|
|
self.build()
|
|
self.set_inferior_startup_launch()
|
|
self.single_step_only_steps_one_instruction(
|
|
use_Hc_packet=True, step_instruction="s")
|
|
|
|
@llgs_test
|
|
@expectedFailureAndroid(
|
|
bugnumber="llvm.org/pr24739",
|
|
archs=[
|
|
"arm",
|
|
"aarch64"])
|
|
@expectedFailureAll(
|
|
oslist=["linux"],
|
|
archs=[
|
|
"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()
|
|
self.set_inferior_startup_launch()
|
|
self.single_step_only_steps_one_instruction(
|
|
use_Hc_packet=True, step_instruction="s")
|