Re: [dpdk-dev] [PATCH] test: remove autotest python wrapper

2021-10-12 Thread David Marchand
On Mon, Oct 11, 2021 at 3:11 PM Aaron Conole wrote: > > This tool was used in the past to execute unit tests with make. > > Meson has its own list of unit test, and its own way of calling them. > > > > Since the switch to meson only builds, there is nothing depending on the > > script in DPDK itse

Re: [dpdk-dev] [PATCH] test: remove autotest python wrapper

2021-10-11 Thread Aaron Conole
David Marchand writes: > This tool was used in the past to execute unit tests with make. > Meson has its own list of unit test, and its own way of calling them. > > Since the switch to meson only builds, there is nothing depending on the > script in DPDK itself. > No CI seems to call it, time to

Re: [dpdk-dev] [PATCH] test: remove autotest python wrapper

2021-10-08 Thread Bruce Richardson
On Fri, Oct 08, 2021 at 02:24:37PM +0200, David Marchand wrote: > This tool was used in the past to execute unit tests with make. > Meson has its own list of unit test, and its own way of calling them. > > Since the switch to meson only builds, there is nothing depending on the > script in DPDK it

[dpdk-dev] [PATCH] test: remove autotest python wrapper

2021-10-08 Thread David Marchand
This tool was used in the past to execute unit tests with make. Meson has its own list of unit test, and its own way of calling them. Since the switch to meson only builds, there is nothing depending on the script in DPDK itself. No CI seems to call it, time to put it to rest. Signed-off-by: Davi