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