On Tue, May 6, 2025 at 9:31 AM Luca Vizzarro <[email protected]> wrote:
>
> From: Thomas Wilks <[email protected]>
>
> Add a test suite that tests the packet capture framework
> through the use of dpdk-dumpcap.
>
> Signed-off-by: Thomas Wilks <[email protected]>
> Signed-off-by: Luca Vizzarro <[email protected]>
> Reviewed-by: Paul Szczepanek <[email protected]>
<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 <[email protected]>