1""" 2Test the output of `frame diagnose` for an array access 3""" 4 5 6import lldb 7from lldbsuite.test.decorators import * 8from lldbsuite.test.lldbtest import * 9from lldbsuite.test import lldbutil 10 11 12class TestArray(TestBase): 13 mydir = TestBase.compute_mydir(__file__) 14 15 @skipUnlessDarwin 16 @skipIfDarwinEmbedded # <rdar://problem/33842388> frame diagnose doesn't work for armv7 or arm64 17 def test_array(self): 18 self.build() 19 exe = self.getBuildArtifact("a.out") 20 self.runCmd("file " + exe, CURRENT_EXECUTABLE_SET) 21 self.runCmd("run", RUN_SUCCEEDED) 22 self.expect("thread list", "Thread should be stopped", 23 substrs=['stopped']) 24 self.expect( 25 "frame diagnose", 26 "Crash diagnosis was accurate", 27 substrs=["a[10]"]) 28