Skip to content

[lldb] Skip tests to unblock rebranch testing #9323

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,14 @@ def check_local_vars(self, process: lldb.SBProcess, check_expr: bool):
process.GetSelectedThread().SetSelectedFrame(f.idx)
self.expect_expr("this", result_type="Foo *")

@skipIf(bugnumber = "rdar://135577167")
@skipIf(oslist=["linux"], archs=["arm"])
@skipIfDarwin
def test_loclist_frame_var(self):
self.build()
self.check_local_vars(self.launch(), check_expr=False)

@skipIf(bugnumber = "rdar://135577167")
@skipIf(dwarf_version=["<", "3"])
@skipIf(compiler="clang", compiler_version=["<", "12.0"])
@skipUnlessDarwin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
class FoundationDisassembleTestCase(TestBase):
NO_DEBUG_INFO_TESTCASE = True

@skipIf(bugnumber = "rdar://135575668")
@skipIfAsan
@expectedFailureDarwin('rdar://problem/54977700')
def test_foundation_disasm(self):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import lldbsuite.test.lldbutil as lldbutil


@skipIf(oslist=['linux'])
class TestSwiftAnonymousClangTypes(lldbtest.TestBase):
@swiftTest
def test(self):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
from lldbsuite.test.decorators import *


@skipIf(bugnumber = "rdar://136232178")
class TestSwiftBackwardInteropFormatActors(TestBase):

@swiftTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
from lldbsuite.test.decorators import *


@skipIf(bugnumber = "rdar://136232178")
class TestSwiftBackwardInteropFormatSwiftStdlibTypes(TestBase):
def setup(self, bkpt_str):
self.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
from lldbsuite.test.decorators import *


@skipIf(bugnumber = "rdar://136232178")
class TestSwiftBackwardInteropFormatSwiftTypesInCxx(TestBase):

def setup(self, bkpt_str):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def build(self):

@skipIf(archs=['ppc64le'], bugnumber='SR-10214')
# This test needs a working Remote Mirrors implementation.
@skipIf(oslist=['windows'])
@skipIf(oslist=['windows', 'linux'])
# We delete the pch that would contains the debug info as part of the setup.
#@skipIf(debug_info=no_match(["dsym"]))
@swiftTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@


class TestSwiftSimpleExpressions(TestBase):
@skipIf(bugnumber = "rdar://135575668")
@swiftTest
def test_simple_swift_expressions(self):
"""Tests that we can run simple Swift expressions correctly"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import lldbsuite.test.lldbutil as lldbutil


@skipUnlessDarwin
class TestSwiftFoundationTypeNotification(lldbtest.TestBase):

mydir = lldbtest.TestBase.compute_mydir(__file__)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
from lldbsuite.test.decorators import *

# FIXME! The Swift driver insists on passing -experimental-skip-non-inlinable-function-bodies-without-types to -emit-module.
lldbinline.MakeInlineTest(__file__, globals(), decorators=[swiftTest,expectedFailureAll(bugnumber="rdar://120928396")])
lldbinline.MakeInlineTest(__file__, globals(), decorators=[swiftTest])