[0/2] Add more DAP launch parameters

Message ID 20230509-dap-args-v1-0-16b5f0aa5cd6@adacore.com
Headers
Series Add more DAP launch parameters |

Message

Tom Tromey May 9, 2023, 4:01 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

---
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                      |  43 ++++++++
 gdb/python/lib/gdb/dap/launch.py         |  20 +++-
 gdb/python/py-inferior.c                 | 168 +++++++++++++++++++++++++++++++
 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, 439 insertions(+), 12 deletions(-)
---
base-commit: d9cc4b060dd23724e1acf974aed3d1b72c8459e5
change-id: 20230509-dap-args-596e21f0b48d

Best regards,