Skip to content

Commit a66ff23

Browse files
committed
[lldb] Re-enable fixed on-device tests
These tests were fixed by 833882b.
1 parent 23ec578 commit a66ff23

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCKVO.py

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

1515
class ObjCDataFormatterKVO(ObjCDataFormatterTestCase):
1616

17-
@expectedFailureAll(remote=True)
1817
def test_kvo_with_run_command(self):
1918
"""Test the behavior of formatters when KVO is in use."""
2019
self.build()

lldb/test/API/lang/objc/direct-dispatch-step/TestObjCDirectDispatchStepping.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ def setUp(self):
2121
self.main_source = lldb.SBFileSpec("stepping-tests.m")
2222

2323
@add_test_categories(['pyapi', 'basic_process'])
24-
@expectedFailureAll(remote=True)
2524
def test_with_python_api(self):
2625
"""Test stepping through the 'direct dispatch' optimized method calls."""
2726
self.build()
@@ -31,7 +30,7 @@ def test_with_python_api(self):
3130
self.main_source)
3231
stop_bkpt = target.BreakpointCreateBySourceRegex("// Stop Location [0-9]+", self.main_source)
3332
self.assertEqual(stop_bkpt.GetNumLocations(), 15)
34-
33+
3534
# Here we step through all the overridden methods of OverridesALot
3635
# The last continue will get us to the call ot OverridesInit.
3736
for idx in range(2,16):
@@ -45,6 +44,6 @@ def test_with_python_api(self):
4544
thread.StepInto()
4645
func_name = thread.GetFrameAtIndex(0).GetFunctionName()
4746
self.assertEqual(func_name, "-[OverridesInit init]", "Stopped in [OverridesInit init]")
48-
4947

50-
48+
49+

lldb/test/API/lang/objc/objc-stepping/TestObjCStepping.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ def setUp(self):
3030
self.main_source, '// Step over nil should stop here.')
3131

3232
@add_test_categories(['pyapi', 'basic_process'])
33-
@expectedFailureAll(remote=True)
3433
def test_with_python_api(self):
3534
"""Test stepping through ObjC method dispatch in various forms."""
3635
self.build()

0 commit comments

Comments
 (0)