Re: [PATCH 4/6] dts: use testpmd params for scatter test suite

2024-04-29 Thread Juraj Linkeš
On Fri, Apr 26, 2024 at 8:06 PM Jeremy Spewock wrote: > > On Wed, Apr 10, 2024 at 9:19 AM Juraj Linkeš > wrote: > > > > On Wed, Apr 10, 2024 at 12:53 PM Luca Vizzarro > > wrote: > > > > > > On 09/04/2024 20:12, Juraj Linkeš wrote: > > > >> @@ -104,16 +108,15 @@ def pmd_scatter(self, mbsize: in

Re: [PATCH 4/6] dts: use testpmd params for scatter test suite

2024-04-26 Thread Jeremy Spewock
On Wed, Apr 10, 2024 at 9:19 AM Juraj Linkeš wrote: > > On Wed, Apr 10, 2024 at 12:53 PM Luca Vizzarro wrote: > > > > On 09/04/2024 20:12, Juraj Linkeš wrote: > > >> @@ -104,16 +108,15 @@ def pmd_scatter(self, mbsize: int) -> None: > > >> """ > > >> testpmd = self.sut_node.cre

Re: [PATCH 4/6] dts: use testpmd params for scatter test suite

2024-04-10 Thread Juraj Linkeš
On Wed, Apr 10, 2024 at 12:53 PM Luca Vizzarro wrote: > > On 09/04/2024 20:12, Juraj Linkeš wrote: > >> @@ -104,16 +108,15 @@ def pmd_scatter(self, mbsize: int) -> None: > >> """ > >> testpmd = self.sut_node.create_interactive_shell( > >> TestPmdShell, > >> -

Re: [PATCH 4/6] dts: use testpmd params for scatter test suite

2024-04-10 Thread Luca Vizzarro
On 09/04/2024 20:12, Juraj Linkeš wrote: @@ -104,16 +108,15 @@ def pmd_scatter(self, mbsize: int) -> None: """ testpmd = self.sut_node.create_interactive_shell( TestPmdShell, -app_parameters=StrParams( -"--mbcache=200 " -

Re: [PATCH 4/6] dts: use testpmd params for scatter test suite

2024-04-09 Thread Juraj Linkeš
On Tue, Mar 26, 2024 at 8:04 PM Luca Vizzarro wrote: > > Update the buffer scatter test suite to use TestPmdParameters > instead of the StrParams implementation. > > Signed-off-by: Luca Vizzarro > Reviewed-by: Jack Bond-Preston > Reviewed-by: Honnappa Nagarahalli > --- > dts/tests/TestSuite_pm