Skip to content

Commit d093111

Browse files
committed
[LLDB] Remove XFAIL on Windows decorator XPASSes
Following tests are now passing on LLDB AArch64 Windows buildbot: lldb-api :: commands/expression/deleting-implicit-copy-constructor/TestDeletingImplicitCopyConstructor.py lldb-api :: functionalities/data-formatter/data-formatter-categories/TestDataFormatterCategories.py lldb-api :: lang/cpp/constructors/TestCppConstructors.py lldb-api :: lang/cpp/namespace/TestNamespace.py lldb-api :: lang/cpp/this_class_type_mixing/TestThisClassTypeMixing.py https://lab.llvm.org/buildbot/#/builders/219/builds/3012 This patch removes XFAIL decorator from all of the above. Differential Revision: https://reviews.llvm.org/D151268
1 parent e20931b commit d093111

File tree

5 files changed

+0
-5
lines changed

5 files changed

+0
-5
lines changed

lldb/test/API/commands/expression/deleting-implicit-copy-constructor/TestDeletingImplicitCopyConstructor.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,5 @@
66
globals(),
77
[
88
decorators.expectedFailureAll(bugnumber="llvm.org/pr50814", compiler="gcc"),
9-
decorators.expectedFailureAll(oslist=["windows"]),
109
],
1110
)

lldb/test/API/functionalities/data-formatter/data-formatter-categories/TestDataFormatterCategories.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ def setUp(self):
1616
self.line = line_number("main.cpp", "// Set break point at this line.")
1717

1818
@expectedFlakeyNetBSD
19-
@expectedFailureAll(oslist=["windows"])
2019
def test_with_run_command(self):
2120
"""Test that that file and class static variables display correctly."""
2221
self.build()

lldb/test/API/lang/cpp/constructors/TestCppConstructors.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
class TestCase(TestBase):
88
@expectedFailureAll(bugnumber="llvm.org/pr50814", compiler="gcc")
9-
@expectedFailureAll(oslist=["windows"])
109
def test_constructors(self):
1110
self.build()
1211
lldbutil.run_to_source_breakpoint(

lldb/test/API/lang/cpp/namespace/TestNamespace.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
class NamespaceBreakpointTestCase(TestBase):
1313
@expectedFailureAll(bugnumber="llvm.org/pr28548", compiler="gcc")
14-
@expectedFailureAll(oslist=["windows"])
1514
def test_breakpoints_func_auto(self):
1615
"""Test that we can set breakpoints correctly by basename to find all functions whose basename is "func"."""
1716
self.build()

lldb/test/API/lang/cpp/this_class_type_mixing/TestThisClassTypeMixing.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ class by injecting a "$__lldb_expr" member function into the class. This
1616

1717
class TestCase(TestBase):
1818
@no_debug_info_test
19-
@expectedFailureAll(oslist=["windows"])
2019
def test(self):
2120
self.build()
2221
lldbutil.run_to_source_breakpoint(

0 commit comments

Comments
 (0)