2 This is a sanity check that verifies that `repr(sbobject)` and `str(sbobject)`
3 produce the same string.
8 from lldbsuite
.test
.lldbtest
import *
11 class TestCase(TestBase
):
12 NO_DEBUG_INFO_TESTCASE
= True
15 self
.assertEqual(repr(self
.dbg
), str(self
.dbg
))