test/ring: rename stress test for MT peek API

Rename test_ring_peek_stress to test_ring_mt_peek_stress to
keep same naming conventions for ST and MT test cases.

Signed-off-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
Reviewed-by: Honnappa Nagarahalli <honnappa.nagarahalli@arm.com>
This commit is contained in:
Konstantin Ananyev 2020-07-02 15:10:27 +01:00 committed by David Marchand
parent fb5d9d5482
commit 6749637af9
5 changed files with 6 additions and 6 deletions

View File

@ -81,7 +81,7 @@ SRCS-y += test_ring.c
SRCS-y += test_ring_mpmc_stress.c
SRCS-y += test_ring_hts_stress.c
SRCS-y += test_ring_perf.c
SRCS-y += test_ring_peek_stress.c
SRCS-y += test_ring_mt_peek_stress.c
SRCS-y += test_ring_rts_stress.c
SRCS-y += test_ring_st_peek_stress.c
SRCS-y += test_ring_stress.c

View File

@ -105,7 +105,7 @@ test_sources = files('commands.c',
'test_ring.c',
'test_ring_mpmc_stress.c',
'test_ring_hts_stress.c',
'test_ring_peek_stress.c',
'test_ring_mt_peek_stress.c',
'test_ring_perf.c',
'test_ring_rts_stress.c',
'test_ring_st_peek_stress.c',

View File

@ -36,7 +36,7 @@ _st_ring_init(struct rte_ring *r, const char *name, uint32_t num)
RING_F_MP_HTS_ENQ | RING_F_MC_HTS_DEQ);
}
const struct test test_ring_peek_stress = {
const struct test test_ring_mt_peek_stress = {
.name = "MT_PEEK",
.nb_case = RTE_DIM(tests),
.cases = tests,

View File

@ -46,8 +46,8 @@ test_ring_stress(void)
n += test_ring_hts_stress.nb_case;
k += run_test(&test_ring_hts_stress);
n += test_ring_peek_stress.nb_case;
k += run_test(&test_ring_peek_stress);
n += test_ring_mt_peek_stress.nb_case;
k += run_test(&test_ring_mt_peek_stress);
n += test_ring_st_peek_stress.nb_case;
k += run_test(&test_ring_st_peek_stress);

View File

@ -35,5 +35,5 @@ struct test {
extern const struct test test_ring_mpmc_stress;
extern const struct test test_ring_rts_stress;
extern const struct test test_ring_hts_stress;
extern const struct test test_ring_peek_stress;
extern const struct test test_ring_mt_peek_stress;
extern const struct test test_ring_st_peek_stress;