Re: [dpdk-dev] [PATCH v2] guides: add a testing guide for developing tests

2021-03-17 Thread Aaron Conole
David Marchand writes: > On Tue, Mar 9, 2021 at 5:14 PM Aaron Conole wrote: >> >>> > +The suites can be selected by adding the ``--suite`` option to the >> >>> > +``meson test`` command. Ex: ``meson test --suite fast-tests``:: >> >>> > + >> >>> > + $ meson test -C build --suite fast-tests >> >

Re: [dpdk-dev] [PATCH v2] guides: add a testing guide for developing tests

2021-03-11 Thread David Marchand
On Tue, Mar 9, 2021 at 5:14 PM Aaron Conole wrote: > >>> > +The suites can be selected by adding the ``--suite`` option to the > >>> > +``meson test`` command. Ex: ``meson test --suite fast-tests``:: > >>> > + > >>> > + $ meson test -C build --suite fast-tests > >>> > + ninja: Entering director

Re: [dpdk-dev] [PATCH v2] guides: add a testing guide for developing tests

2021-03-09 Thread Aaron Conole
Aaron Conole writes: > Bruce Richardson writes: > >> On Tue, Mar 02, 2021 at 10:07:26AM +0100, David Marchand wrote: >>> On Wed, Feb 10, 2021 at 3:56 PM Aaron Conole wrote: >>> > diff --git a/doc/guides/contributing/testing.rst >>> > b/doc/guides/contributing/testing.rst >>> > new file mode 10

Re: [dpdk-dev] [PATCH v2] guides: add a testing guide for developing tests

2021-03-02 Thread Bruce Richardson
On Tue, Mar 02, 2021 at 10:26:59AM -0500, Aaron Conole wrote: > Bruce Richardson writes: > > > On Tue, Mar 02, 2021 at 10:07:26AM +0100, David Marchand wrote: > >> On Wed, Feb 10, 2021 at 3:56 PM Aaron Conole wrote: > >> > diff --git a/doc/guides/contributing/testing.rst > >> > b/doc/guides/con

Re: [dpdk-dev] [PATCH v2] guides: add a testing guide for developing tests

2021-03-02 Thread Aaron Conole
Bruce Richardson writes: > On Tue, Mar 02, 2021 at 10:07:26AM +0100, David Marchand wrote: >> On Wed, Feb 10, 2021 at 3:56 PM Aaron Conole wrote: >> > diff --git a/doc/guides/contributing/testing.rst >> > b/doc/guides/contributing/testing.rst >> > new file mode 100644 >> > index 00..86c

Re: [dpdk-dev] [PATCH v2] guides: add a testing guide for developing tests

2021-03-02 Thread Bruce Richardson
On Tue, Mar 02, 2021 at 10:07:26AM +0100, David Marchand wrote: > On Wed, Feb 10, 2021 at 3:56 PM Aaron Conole wrote: > > diff --git a/doc/guides/contributing/testing.rst > > b/doc/guides/contributing/testing.rst > > new file mode 100644 > > index 00..86ca24ce43 > > --- /dev/null > > +++

Re: [dpdk-dev] [PATCH v2] guides: add a testing guide for developing tests

2021-03-02 Thread David Marchand
On Wed, Feb 10, 2021 at 3:56 PM Aaron Conole wrote: > diff --git a/doc/guides/contributing/testing.rst > b/doc/guides/contributing/testing.rst > new file mode 100644 > index 00..86ca24ce43 > --- /dev/null > +++ b/doc/guides/contributing/testing.rst > @@ -0,0 +1,245 @@ > +.. SPDX-License-

[dpdk-dev] [PATCH v2] guides: add a testing guide for developing tests

2021-02-10 Thread Aaron Conole
The DPDK testing infrastructure includes a comprehensive set of libraries, utilities, and CI integrations for developers to test their code changes. This isn't well documented, however. Document the basics for adding a test suite to the infrastructure and enabling that test suite for continuous i