Skip to content

Commit fe794ce

Browse files
pranavkJDevlieghere
authored andcommitted
[lldb][DAP] Fix test failure from llvm#73393 (llvm#89692)
llvm#73393 introduced a mandatory column field. Update test for that. (cherry picked from commit aa89c1b)
1 parent d9ab129 commit fe794ce

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lldb/test/API/tools/lldb-dap/coreFile/TestDAP_coreFile.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,23 @@ def test_core_file(self):
2525

2626
expected_frames = [
2727
{
28+
"column": 0,
2829
"id": 524288,
2930
"line": 4,
3031
"name": "bar",
3132
"source": {"name": "main.c", "path": "/home/labath/test/main.c"},
3233
"instructionPointerReference": "0x40011C",
3334
},
3435
{
36+
"column": 0,
3537
"id": 524289,
3638
"line": 10,
3739
"name": "foo",
3840
"source": {"name": "main.c", "path": "/home/labath/test/main.c"},
3941
"instructionPointerReference": "0x400142",
4042
},
4143
{
44+
"column": 0,
4245
"id": 524290,
4346
"line": 16,
4447
"name": "_start",

0 commit comments

Comments
 (0)