Re: [PATCH v6 1/1] dts: add text parser for testpmd verbose output

2024-09-26 Thread Jeremy Spewock
On Thu, Sep 26, 2024 at 4:25 AM Juraj Linkeš wrote: > > > > diff --git a/dts/framework/remote_session/testpmd_shell.py > > b/dts/framework/remote_session/testpmd_shell.py > > > @@ -581,6 +581,506 @@ class TestPmdPortStats(TextParser): > > tx_bps: int = field(metadata=TextParser.find_int(r"T

Re: [PATCH v6 1/1] dts: add text parser for testpmd verbose output

2024-09-26 Thread Juraj Linkeš
diff --git a/dts/framework/remote_session/testpmd_shell.py b/dts/framework/remote_session/testpmd_shell.py @@ -581,6 +581,506 @@ class TestPmdPortStats(TextParser): tx_bps: int = field(metadata=TextParser.find_int(r"Tx-bps:\s+(\d+)")) +class PacketOffloadFlag(Flag): +#: R

[PATCH v6 1/1] dts: add text parser for testpmd verbose output

2024-09-25 Thread jspewock
From: Jeremy Spewock Multiple test suites from the old DTS framework rely on being able to consume and interpret the verbose output of testpmd. The new framework doesn't have an elegant way for handling the verbose output, but test suites are starting to be written that rely on it. This patch cre