Skip to content

[lldb] Re-enable fixed on-device tests #4210

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 @@ -14,7 +14,6 @@

class ObjCDataFormatterKVO(ObjCDataFormatterTestCase):

@expectedFailureAll(remote=True)
def test_kvo_with_run_command(self):
"""Test the behavior of formatters when KVO is in use."""
self.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ def setUp(self):
self.main_source = lldb.SBFileSpec("stepping-tests.m")

@add_test_categories(['pyapi', 'basic_process'])
@expectedFailureAll(remote=True)
def test_with_python_api(self):
"""Test stepping through the 'direct dispatch' optimized method calls."""
self.build()
Expand All @@ -31,7 +30,7 @@ def test_with_python_api(self):
self.main_source)
stop_bkpt = target.BreakpointCreateBySourceRegex("// Stop Location [0-9]+", self.main_source)
self.assertEqual(stop_bkpt.GetNumLocations(), 15)

# Here we step through all the overridden methods of OverridesALot
# The last continue will get us to the call ot OverridesInit.
for idx in range(2,16):
Expand All @@ -45,6 +44,6 @@ def test_with_python_api(self):
thread.StepInto()
func_name = thread.GetFrameAtIndex(0).GetFunctionName()
self.assertEqual(func_name, "-[OverridesInit init]", "Stopped in [OverridesInit init]")





1 change: 0 additions & 1 deletion lldb/test/API/lang/objc/objc-stepping/TestObjCStepping.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ def setUp(self):
self.main_source, '// Step over nil should stop here.')

@add_test_categories(['pyapi', 'basic_process'])
@expectedFailureAll(remote=True)
def test_with_python_api(self):
"""Test stepping through ObjC method dispatch in various forms."""
self.build()
Expand Down