[v2,0/2] Add more DAP launch parameters

Message ID 20230509-dap-args-v2-0-095bf5392c53@adacore.com
Headers
Series Add more DAP launch parameters |

Message

Tom Tromey May 17, 2023, 3:52 p.m. UTC
  This series adds some more Python attributes (and methods), and then
uses these to implement some new launch parameters for DAP.

Inferior.main_name is added but not used.  I plan to use this to
implement a "stop at main" launch parameter, after we work out a few
details.  Meanwhile it seemed harmless and potentially useful.

Tom

---
Changes in v2:
- Updated per reviews
- Link to v1: https://inbox.sourceware.org/gdb-patches/20230509-dap-args-v1-0-16b5f0aa5cd6@adacore.com

---
Tom Tromey (2):
      Add attributes and methods to gdb.Inferior
      Add "args" and "env" parameters to DAP launch request

 gdb/NEWS                                 |  10 ++
 gdb/doc/gdb.texinfo                      |  13 ++-
 gdb/doc/python.texi                      |  44 ++++++++
 gdb/python/lib/gdb/dap/launch.py         |  20 +++-
 gdb/python/py-inferior.c                 | 169 +++++++++++++++++++++++++++++++
 gdb/testsuite/gdb.ada/py_range.exp       |   4 +
 gdb/testsuite/gdb.dap/args-env.c         |  28 +++++
 gdb/testsuite/gdb.dap/args-env.exp       |  90 ++++++++++++++++
 gdb/testsuite/gdb.python/py-inferior.exp |  36 +++++++
 gdb/testsuite/lib/dap-support.exp        |  39 +++++--
 10 files changed, 441 insertions(+), 12 deletions(-)
---
base-commit: 80d4e113d7b9af8a5a36e5ea4399bca86050784f
change-id: 20230509-dap-args-596e21f0b48d

Best regards,
  

Comments

Tom Tromey May 24, 2023, 12:16 p.m. UTC | #1
>>>>> "Tom" == Tom Tromey via Gdb-patches <gdb-patches@sourceware.org> writes:

Tom> This series adds some more Python attributes (and methods), and then
Tom> uses these to implement some new launch parameters for DAP.

Tom> Inferior.main_name is added but not used.  I plan to use this to
Tom> implement a "stop at main" launch parameter, after we work out a few
Tom> details.  Meanwhile it seemed harmless and potentially useful.

I'm checking this in.

Tom