Apparently I was replying to v2 so fixing that from now on.
On 30. 5. 2024 17:25, Luca Vizzarro wrote:
Implement all the testpmd shell parameters into a data structure. Signed-off-by: Luca Vizzarro <[email protected]> Reviewed-by: Paul Szczepanek <[email protected]>
Just one minor correction, otherwise: Reviewed-by: Juraj Linkeš <[email protected]>
+@dataclass(slots=True, kw_only=True) +class TestPmdParams(EalParams): + """The testpmd shell parameters. + + Attributes: + interactive_mode: Runs testpmd in interactive mode.
"Run testpmd" to unify with the rest of the attributes.

