numam-dpdk/app/test/test_ring_stress.c
Konstantin Ananyev bf28df24e9 test/ring: add contention stress test
Introduce stress test for ring enqueue/dequeue operations.
Performs the following pattern on each slave worker:
dequeue/read-write data from the dequeued objects/enqueue.
Serves as both functional and performance test of ring
enqueue/dequeue operations under high contention
(for both over committed and non-over committed scenarios).

Signed-off-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
Acked-by: Honnappa Nagarahalli <honnappa.nagarahalli@arm.com>
2020-04-21 11:34:09 +02:00

49 lines
881 B
C

/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2020 Intel Corporation
*/
#include "test_ring_stress.h"
static int
run_test(const struct test *test)
{
int32_t rc;
uint32_t i, k;
for (i = 0, k = 0; i != test->nb_case; i++) {
printf("TEST-CASE %s %s START\n",
test->name, test->cases[i].name);
rc = test->cases[i].func(test->cases[i].wfunc);
k += (rc == 0);
if (rc != 0)
printf("TEST-CASE %s %s FAILED\n",
test->name, test->cases[i].name);
else
printf("TEST-CASE %s %s OK\n",
test->name, test->cases[i].name);
}
return k;
}
static int
test_ring_stress(void)
{
uint32_t n, k;
n = 0;
k = 0;
n += test_ring_mpmc_stress.nb_case;
k += run_test(&test_ring_mpmc_stress);
printf("Number of tests:\t%u\nSuccess:\t%u\nFailed:\t%u\n",
n, k, n - k);
return (k != n);
}
REGISTER_TEST_COMMAND(ring_stress_autotest, test_ring_stress);