Skip to content

Commit ac737ef

Browse files
author
kendal
committed
[lldb][test][win][x86_64] XFAIL already failing API tests
These test are passing locally on win x86_64 using the following configuration (some options ellided for brevity) CMAKE_C_COMPILER clang-cl.exe CMAKE_CXX_COMPILER clang-cl.exe CMAKE_BUILD_TYPE Release CMAKE_LINKER lld-link.exe LLVM_HOST_TRIPLE="x86_64-unknown-windows-msvc" LLDB_TEST_USER_ARGS=--skip-category=watchpoint LLDB_ENFORCE_STRICT_TEST_REQUIREMENTS=1
1 parent 70c6e79 commit ac737ef

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

lldb/test/API/functionalities/multiple-slides/TestMultipleSlides.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
class MultipleSlidesTestCase(TestBase):
1313
NO_DEBUG_INFO_TESTCASE = True
1414

15+
@expectedFailureAll(oslist=["windows"], archs=["x86_64"])
1516
def test_mulitple_slides(self):
1617
"""Test that a binary can be slid multiple times correctly."""
1718
self.build()

lldb/test/API/lang/cpp/class-template-non-type-parameter-pack/TestClassTemplateNonTypeParameterPack.py

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

77
class TestCaseClassTemplateNonTypeParameterPack(TestBase):
88
@expectedFailureAll(
9-
oslist=["windows"], archs=["i[3-6]86", "x86_64"]
9+
oslist=["windows"], archs=["i[3-6]86"]
1010
) # Fails to read memory from target.
1111
@no_debug_info_test
1212
def test(self):

lldb/test/API/lang/cpp/class-template-type-parameter-pack/TestClassTemplateTypeParameterPack.py

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

77
class TestCaseClassTemplateTypeParameterPack(TestBase):
88
@expectedFailureAll(
9-
oslist=["windows"], archs=["i[3-6]86", "x86_64"]
9+
oslist=["windows"], archs=["i[3-6]86"]
1010
) # Fails to read memory from target.
1111
@no_debug_info_test
1212
def test(self):

lldb/test/API/python_api/thread/TestThreadAPI.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ def test_negative_indexing(self):
5252
self.build()
5353
self.validate_negative_indexing()
5454

55+
@expectedFailureAll(oslist=["windows"], archs=["x86_64"])
5556
def test_StepInstruction(self):
5657
"""Test that StepInstruction preserves the plan stack."""
5758
self.build()

0 commit comments

Comments
 (0)