Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / sanity / TestReprStrEquality.py
blob96eeacdd07480e8557e941cf57fad066c8bc7daf
1 """
2 This is a sanity check that verifies that `repr(sbobject)` and `str(sbobject)`
3 produce the same string.
4 """
7 import lldb
8 from lldbsuite.test.lldbtest import *
11 class TestCase(TestBase):
12 NO_DEBUG_INFO_TESTCASE = True
14 def test(self):
15 self.assertEqual(repr(self.dbg), str(self.dbg))