This reverts commit dadf960607bb429baebd3f523ce5b93260a154d2. The commit caused `TestEarlyProcessLaunch.py` to fail on the macOS bots.
19 lines
523 B
Python
19 lines
523 B
Python
"""
|
|
Test that the the expression parser enables ObjC support
|
|
when stopped in a C++ frame without debug-info.
|
|
"""
|
|
|
|
import lldb
|
|
from lldbsuite.test.decorators import *
|
|
from lldbsuite.test.lldbtest import *
|
|
from lldbsuite.test import lldbutil
|
|
|
|
|
|
class TestObjCFromCppFramesWithoutDebugInfo(TestBase):
|
|
def test(self):
|
|
self.build()
|
|
(_, process, _, _) = lldbutil.run_to_name_breakpoint(self, "main")
|
|
|
|
self.assertState(process.GetState(), lldb.eStateStopped)
|
|
self.expect("expr id", error=False)
|