Skip to content

Commit 5a32aac

Browse files
author
kendal
committed
[lldb][test][win][x86_64] Remove XFAIL from passing API tests
1 parent 70c6e79 commit 5a32aac

File tree

5 files changed

+4
-3
lines changed

5 files changed

+4
-3
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/functionalities/step-avoids-no-debug/TestStepNoDebug.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
Test thread step-in, step-over and step-out work with the "Avoid no debug" option.
33
"""
44

5-
65
import lldb
76
from lldbsuite.test.decorators import *
87
from lldbsuite.test.lldbtest import *

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)