1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
"""
Test lldb-dap terminated event
"""
import dap_server
from lldbsuite.test.decorators import *
from lldbsuite.test.lldbtest import *
from lldbsuite.test import lldbutil
import lldbdap_testcase
import re
import json
class TestDAP_terminatedEvent(lldbdap_testcase.DAPTestCaseBase):
@skipIfWindows
@skipIfRemote
def test_terminated_event(self):
"""
Terminated Event
Now contains the statistics of a debug session:
metatdata:
totalDebugInfoByteSize > 0
totalDebugInfoEnabled > 0
totalModuleCountHasDebugInfo > 0
...
targetInfo:
totalBreakpointResolveTime > 0
breakpoints:
recognize function breakpoint
recognize source line breakpoint
It should contains the breakpoints info: function bp & source line bp
"""
program_basename = "a.out.stripped"
program = self.getBuildArtifact(program_basename)
self.build_and_launch(program)
# Set breakpoints
functions = ["foo"]
breakpoint_ids = self.set_function_breakpoints(functions)
self.assertEqual(len(breakpoint_ids), len(functions), "expect one breakpoint")
main_bp_line = line_number("main.cpp", "// main breakpoint 1")
breakpoint_ids.append(self.set_source_breakpoints("main.cpp", [main_bp_line]))
self.continue_to_breakpoints(breakpoint_ids)
self.continue_to_exit()
statistics = self.dap_server.wait_for_terminated()["statistics"]
self.assertTrue(statistics["totalDebugInfoByteSize"] > 0)
self.assertTrue(statistics["totalDebugInfoEnabled"] > 0)
self.assertTrue(statistics["totalModuleCountHasDebugInfo"] > 0)
self.assertIsNotNone(statistics["memory"])
self.assertNotIn("modules", statistics.keys())
# lldb-dap debugs one target at a time
target = json.loads(statistics["targets"])[0]
self.assertTrue(target["totalBreakpointResolveTime"] > 0)
breakpoints = target["breakpoints"]
self.assertIn(
"foo",
breakpoints[0]["details"]["Breakpoint"]["BKPTResolver"]["Options"][
"SymbolNames"
],
"foo is a symbol breakpoint",
)
self.assertTrue(
breakpoints[1]["details"]["Breakpoint"]["BKPTResolver"]["Options"][
"FileName"
].endswith("main.cpp"),
"target has source line breakpoint in main.cpp",
)
|