2 Test the output of `frame diagnose` for calling virtual methods
7 from lldbsuite.test.decorators import *
8 from lldbsuite.test.lldbtest import *
9 from lldbsuite.test import lldbutil
12 class TestDiagnoseInheritance(TestBase):
13 mydir = TestBase.compute_mydir(__file__)
16 @skipIfDarwinEmbedded # <rdar://problem/33842388> frame diagnose doesn't work for armv7 or arm64
17 def test_diagnose_inheritance(self):
20 exe = self.getBuildArtifact("a.out")
21 self.runCmd("file " + exe, CURRENT_EXECUTABLE_SET)
22 self.runCmd("run", RUN_SUCCEEDED)
23 self.expect("thread list", "Thread should be stopped",
25 self.expect("frame diagnose", "Crash diagnosis was accurate", "d")