I want to load 2 programs in the same GDB session using inferior, however I only want program 2 to run after the breakpoint event from program 1. When this event is reached, I want to connect my 2nd program so as not to disconnect GDB from the device causing a reset on the remote device. This task i want to be automated to enable running of many tests in a series of tests. This code is in my .sh script run on cygwin.
Here is a sample of the code i have been trying to run;
gdb -batch -l 20 \
-ex "target extended-remote localhost:3333" \
-ex "load ${progA}" \
-ex "add-inferior -exec ${progB} -no-connection" \
-ex "run" \
-ex "inferior infno" \
-ex "target extended-remote localhost:3333" \
-ex "continue"
The result is the disconnection of GDB from the target causing a device reset when the connection is re-established. I also move past the breakpoint event.
The problem here is the use of
inferior infno
, this isn't a thing, there's no convenience variable or keyword that means switch to an inferior that is not otherwise running.However, you can create a convenience function in Python that does what you want. Add the following to a
nri.py
file:Then inside a GDB session: