Re: [PATCH v3 2/3] Initial implementation for VLAN test suite

2024-06-17 Thread Jeremy Spewock
On Fri, Jun 14, 2024 at 11:03 AM Dean Marx wrote: > > Test suite for ensuring Poll Mode Driver can enable or disable > vlan filtering, stripping, and header insertion of packets sent on > a port. > > Signed-off-by: Dean Marx > --- > + > +class TestVlan(TestSuite): > +"""DPDK VLAN test suite.

Re: [PATCH v3 2/3] Initial implementation for VLAN test suite

2024-06-14 Thread Patrick Robb
Looks promising thanks - some comments below. On Fri, Jun 14, 2024 at 11:03 AM Dean Marx wrote: > +class TestVlan(TestSuite): > +"""DPDK VLAN test suite. > + > +Ensures VLAN packet reception on the Poll Mode Driver when certain > conditions are met. > +If one or more of these conditi

[PATCH v3 2/3] Initial implementation for VLAN test suite

2024-06-14 Thread Dean Marx
Test suite for ensuring Poll Mode Driver can enable or disable vlan filtering, stripping, and header insertion of packets sent on a port. Signed-off-by: Dean Marx --- dts/tests/TestSuite_vlan.py | 172 1 file changed, 172 insertions(+) create mode 100644 dts