forked from OSchip/llvm-project
parent
c7214f6510
commit
33fdaed491
|
@ -1,4 +1,5 @@
|
||||||
# XFAIL: system-netbsd
|
# XFAIL: system-netbsd
|
||||||
|
# UNSUPPORTED: system-linux
|
||||||
#
|
#
|
||||||
# RUN: %build %p/inputs/break-insert.c --nodefaultlib -o a.exe
|
# RUN: %build %p/inputs/break-insert.c --nodefaultlib -o a.exe
|
||||||
# RUN: %lldbmi < %s | FileCheck %s
|
# RUN: %lldbmi < %s | FileCheck %s
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
# XFAIL: system-netbsd
|
# XFAIL: system-netbsd
|
||||||
|
# UNSUPPORTED: system-linux
|
||||||
#
|
#
|
||||||
# RUN: %build %p/inputs/main.c --nodefaultlib -o %t
|
# RUN: %build %p/inputs/main.c --nodefaultlib -o %t
|
||||||
# RUN: %lldbmi %t < %s | FileCheck %s
|
# RUN: %lldbmi %t < %s | FileCheck %s
|
||||||
|
|
|
@ -83,9 +83,9 @@ class MiInterpreterExecTestCase(lldbmi_testcase.MiTestCaseBase):
|
||||||
|
|
||||||
@skipIfWindows # llvm.org/pr24452: Get lldb-mi tests working on Windows
|
@skipIfWindows # llvm.org/pr24452: Get lldb-mi tests working on Windows
|
||||||
@skipIfFreeBSD # llvm.org/pr22411: Failure presumably due to known thread races
|
@skipIfFreeBSD # llvm.org/pr22411: Failure presumably due to known thread races
|
||||||
@expectedFlakeyLinux(bugnumber="llvm.org/pr25470")
|
|
||||||
@skipIfRemote # We do not currently support remote debugging via the MI.
|
@skipIfRemote # We do not currently support remote debugging via the MI.
|
||||||
@skipIfDarwin
|
@skipIfDarwin
|
||||||
|
@skipIfLinux
|
||||||
def test_lldbmi_settings_set_target_run_args_before(self):
|
def test_lldbmi_settings_set_target_run_args_before(self):
|
||||||
"""Test that 'lldb-mi --interpreter' can set target arguments by 'setting set target.run-args' command before than target was created."""
|
"""Test that 'lldb-mi --interpreter' can set target arguments by 'setting set target.run-args' command before than target was created."""
|
||||||
|
|
||||||
|
|
|
@ -19,6 +19,7 @@ class MiStartupOptionsTestCase(lldbmi_testcase.MiTestCaseBase):
|
||||||
@skipIfWindows # llvm.org/pr24452: Get lldb-mi tests working on Windows
|
@skipIfWindows # llvm.org/pr24452: Get lldb-mi tests working on Windows
|
||||||
@skipIfFreeBSD # llvm.org/pr22411: Failure presumably due to known thread races
|
@skipIfFreeBSD # llvm.org/pr22411: Failure presumably due to known thread races
|
||||||
@skipIfDarwin
|
@skipIfDarwin
|
||||||
|
@skipIfLinux
|
||||||
def test_lldbmi_executable_option_file(self):
|
def test_lldbmi_executable_option_file(self):
|
||||||
"""Test that 'lldb-mi --interpreter %s' loads executable file."""
|
"""Test that 'lldb-mi --interpreter %s' loads executable file."""
|
||||||
|
|
||||||
|
@ -67,6 +68,7 @@ class MiStartupOptionsTestCase(lldbmi_testcase.MiTestCaseBase):
|
||||||
@skipIfWindows # llvm.org/pr24452: Get lldb-mi tests working on Windows
|
@skipIfWindows # llvm.org/pr24452: Get lldb-mi tests working on Windows
|
||||||
@skipIfFreeBSD # llvm.org/pr22411: Failure presumably due to known thread races
|
@skipIfFreeBSD # llvm.org/pr22411: Failure presumably due to known thread races
|
||||||
@skipIfDarwin
|
@skipIfDarwin
|
||||||
|
@skipIfLinux
|
||||||
def test_lldbmi_executable_option_absolute_path(self):
|
def test_lldbmi_executable_option_absolute_path(self):
|
||||||
"""Test that 'lldb-mi --interpreter %s' loads executable which is specified via absolute path."""
|
"""Test that 'lldb-mi --interpreter %s' loads executable which is specified via absolute path."""
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue