On Tue, May 6, 2025 at 9:31 AM Luca Vizzarro <luca.vizza...@arm.com> wrote: > > From: Thomas Wilks <thomas.wi...@arm.com> > > Add a test suite that tests the packet capture framework > through the use of dpdk-dumpcap. > > Signed-off-by: Thomas Wilks <thomas.wi...@arm.com> > Signed-off-by: Luca Vizzarro <luca.vizza...@arm.com> > Reviewed-by: Paul Szczepanek <paul.szczepa...@arm.com>
<snip> > + > + def close(self) -> None: > + """Close the application. > + > + Sends a SIGINT to close the application. > + """ > + self.send_command("\x03") > + super().close() I believe code x03 is for SIGQUIT, not SIGINT: https://www.chromium.org/chromium-os/developer-library/reference/linux-constants/signals/ Otherwise: Reviewed-by: Dean Marx <dm...@iol.unh.edu>