brintos

brintos / llvm-project-archived public Read only

0
0
Text · 430 B · de8c7f7 Raw
18 lines · python
1"""2Verify that LLDB doesn't crash during expression evaluation.3"""4 5import lldb6from lldbsuite.test.decorators import *7from lldbsuite.test.lldbtest import *8from lldbsuite.test import lldbutil9 10 11class ExprCrashTestCase(TestBase):12    def test_pr52257(self):13        self.build()14        self.createTestTarget()15        self.expect_expr(16            "b", result_type="B", result_children=[ValueCheck(name="tag_set_")]17        )18