DPDK patches and discussions
 help / color / mirror / Atom feed
From: David Marchand <david.marchand@redhat.com>
To: David Marchand <david.marchand@redhat.com>
Cc: dev@dpdk.org, bruce.richardson@intel.com,
	"Fan Zhang" <fanzhang.oss@gmail.com>,
	"Ashish Gupta" <ashish.gupta@marvell.com>,
	"Akhil Goyal" <gakhil@marvell.com>,
	"Naga Harish K S V" <s.v.naga.harish.k@intel.com>,
	"Jerin Jacob" <jerinj@marvell.com>,
	"Kiran Kumar K" <kirankumark@marvell.com>,
	"Nithin Dabilpuram" <ndabilpuram@marvell.com>,
	"Zhirun Yan" <zhirun.yan@intel.com>,
	"Reshma Pattan" <reshma.pattan@intel.com>,
	"Chas Williams" <chas3@att.com>,
	"Min Hu (Connor)" <humin29@huawei.com>,
	"Anoob Joseph" <anoobj@marvell.com>,
	"Volodymyr Fialko" <vfialko@marvell.com>,
	"Stephen Hemminger" <stephen@networkplumber.org>,
	"Sachin Saxena" <sachin.saxena@nxp.com>,
	"Hemant Agrawal" <hemant.agrawal@nxp.com>,
	"Cristian Dumitrescu" <cristian.dumitrescu@intel.com>,
	"Ciara Power" <ciara.power@intel.com>,
	"Morten Brørup" <mb@smartsharesystems.com>
Subject: Re: [PATCH] test: fix fast, perf and driver testsuites
Date: Fri, 15 Sep 2023 14:43:06 +0200	[thread overview]
Message-ID: <CAJFAV8zcfp6shh=PWWiSdqv9Ji=yAAAZjjRcYB91VYM-7JJCGA@mail.gmail.com> (raw)
In-Reply-To: <20230915075801.288931-1-david.marchand@redhat.com>

On Fri, Sep 15, 2023 at 9:58 AM David Marchand
<david.marchand@redhat.com> wrote:
>
> Some tests (15 fast-tests, 2 perf tests and 7 driver tests) have been
> lost in the recent changes reworking test suites.
>
> The following method was used to identify them:
>
> $ git grep -h fast_tests.+= e0a8442ccd -- app/test/meson.build
>     fast_tests += [['graph_autotest', true, true]]
>     fast_tests += [['node_list_dump', true, true]]
>     fast_tests += [['metrics_autotest', true, true]]
>     fast_tests += [['telemetry_json_autotest', true, true]]
>     fast_tests += [['telemetry_data_autotest', true, true]]
>     fast_tests += [['table_autotest', true, true]]
>     fast_tests += [['ring_pmd_autotest', true, true]]
>     fast_tests += [['event_eth_tx_adapter_autotest', false, true]]
>         fast_tests += [['bitratestats_autotest', true, true]]
>         fast_tests += [['latencystats_autotest', true, true]]
>         fast_tests += [['pdump_autotest', true, false]]
>     fast_tests += [['vdev_autotest', true, true]]
>     fast_tests += [['rawdev_autotest', true, true]]
>     fast_tests += [['pdcp_autotest', false, true]]
>         fast_tests += [['compressdev_autotest', false, true]]
>
> $ git grep -h perf_test_names.+= e0a8442ccd -- app/test/meson.build
>     perf_test_names += 'graph_perf_autotest'
>     perf_test_names += 'ring_pmd_perf_autotest'
>
> $ git grep -hA4 driver_test_names.+= e0a8442ccd -- app/test/meson.build
>     driver_test_names += [
>             'cryptodev_openssl_asym_autotest',
>             'eventdev_selftest_octeontx',
>             'eventdev_selftest_sw',
>     ]
> --
>     driver_test_names += ['link_bonding_autotest', 'link_bonding_rssconf_autotest']
>     if dpdk_conf.has('RTE_NET_RING')
>         test_sources += 'test_link_bonding_mode4.c'
>         driver_test_names += 'link_bonding_mode4_autotest'
>     endif
> endif
> if dpdk_conf.has('RTE_LIB_EVENTDEV') and dpdk_conf.has('RTE_NET_RING')
>     test_deps += 'net_ring'
> --
>     driver_test_names += 'cryptodev_scheduler_autotest'
>     test_deps += 'crypto_scheduler'
> endif
>
> foreach d:test_deps
>
> Fixes: e0a8442ccd15 ("test: tag tests type")
>
> Signed-off-by: David Marchand <david.marchand@redhat.com>
> > Acked-by: Bruce Richardson <bruce.richardson@intel.com>
> Acked-by: Morten Brørup <mb@smartsharesystems.com>

Applied, thanks.


-- 
David Marchand


      parent reply	other threads:[~2023-09-15 12:43 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-15  7:58 David Marchand
2023-09-15  8:24 ` Bruce Richardson
2023-09-15  8:29   ` Morten Brørup
2023-09-15 12:43 ` David Marchand [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAJFAV8zcfp6shh=PWWiSdqv9Ji=yAAAZjjRcYB91VYM-7JJCGA@mail.gmail.com' \
    --to=david.marchand@redhat.com \
    --cc=anoobj@marvell.com \
    --cc=ashish.gupta@marvell.com \
    --cc=bruce.richardson@intel.com \
    --cc=chas3@att.com \
    --cc=ciara.power@intel.com \
    --cc=cristian.dumitrescu@intel.com \
    --cc=dev@dpdk.org \
    --cc=fanzhang.oss@gmail.com \
    --cc=gakhil@marvell.com \
    --cc=hemant.agrawal@nxp.com \
    --cc=humin29@huawei.com \
    --cc=jerinj@marvell.com \
    --cc=kirankumark@marvell.com \
    --cc=mb@smartsharesystems.com \
    --cc=ndabilpuram@marvell.com \
    --cc=reshma.pattan@intel.com \
    --cc=s.v.naga.harish.k@intel.com \
    --cc=sachin.saxena@nxp.com \
    --cc=stephen@networkplumber.org \
    --cc=vfialko@marvell.com \
    --cc=zhirun.yan@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).