1*c7a56af3SDave Lee""" 2*c7a56af3SDave LeeThis is a sanity check that verifies that `repr(sbobject)` and `str(sbobject)` 3*c7a56af3SDave Leeproduce the same string. 4*c7a56af3SDave Lee""" 5*c7a56af3SDave Lee 6*c7a56af3SDave Lee 7*c7a56af3SDave Leeimport lldb 8*c7a56af3SDave Leefrom lldbsuite.test.lldbtest import * 9*c7a56af3SDave Lee 10*c7a56af3SDave Lee 11*c7a56af3SDave Leeclass TestCase(TestBase): 12*c7a56af3SDave Lee NO_DEBUG_INFO_TESTCASE = True 13*c7a56af3SDave Lee 14*c7a56af3SDave Lee def test(self): 15*c7a56af3SDave Lee self.assertEqual(repr(self.dbg), str(self.dbg)) 16