"""This is a sanity check that verifies that `repr(sbobject)` and `str(sbobject)`produce the same string."""import lldb
from lldbsuite.test.lldbtest import*classTestCase(TestBase):
NO_DEBUG_INFO_TESTCASE =Truedeftest(self):
self.assertEqual(repr(self.dbg),str(self.dbg))