[V1] tests/distributor: adapt the update of the DPDK
Commit Message
adapt the update of the DPDK file path
Signed-off-by: Bo Chen <BoX.C.Chen@intel.com>
---
tests/TestSuite_distributor.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Comments
Tested-by: Bo Chen <box.c.chen@intel.com>
> -----Original Message-----
> From: Chen, BoX C <box.c.chen@intel.com>
> Sent: April 24, 2021 1:09
> To: dts@dpdk.org
> Cc: Chen, BoX C <box.c.chen@intel.com>
> Subject: [dts][PATCH V1] tests/distributor: adapt the update of the DPDK
> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Chen, BoX C
> Sent: 2021年4月23日 17:09
> To: dts@dpdk.org
> Cc: Chen, BoX C <box.c.chen@intel.com>
> Subject: Re: [dts] [PATCH V1] tests/distributor: adapt the update of the DPDK
>
> Tested-by: Bo Chen <box.c.chen@intel.com>
>
> > -----Original Message-----
> > From: Chen, BoX C <box.c.chen@intel.com>
> > Sent: April 24, 2021 1:09
> > To: dts@dpdk.org
> > Cc: Chen, BoX C <box.c.chen@intel.com>
> > Subject: [dts][PATCH V1] tests/distributor: adapt the update of the DPDK
Applied
@@ -165,7 +165,7 @@ class TestDistributor(TestCase):
self.verify(len(self.dut_ports) >= 1, "Not enough ports")
cmd_fmt = "%s %s -- -p 0x1"
- out = self.dut.send_expect("sed -n '/#define RTE_DISTRIB_MAX_WORKERS/p' lib/librte_distributor/distributor_private.h", "# ")
+ out = self.dut.send_expect("sed -n '/#define RTE_DISTRIB_MAX_WORKERS/p' lib/distributor/distributor_private.h", "# ")
reg_match = r"#define RTE_DISTRIB_MAX_WORKERS (.*)"
m = re.match(reg_match, out)
self.verify(m, "Can't find maximum worker number")