MCPcopy Create free account
hub / github.com/F-Stack/f-stack / test_latency_uninit

Function test_latency_uninit

dpdk/app/test/test_latencystats.c:57–68  ·  view source on GitHub ↗

Test case to uninit latency stats */

Source from the content-addressed store, hash-verified

55
56/* Test case to uninit latency stats */
57static int test_latency_uninit(void)
58{
59 int ret = 0;
60
61 ret = rte_latencystats_uninit();
62 TEST_ASSERT(ret >= 0, "Test Failed: rte_latencystats_uninit failed");
63
64 ret = rte_metrics_deinit();
65 TEST_ASSERT(ret >= 0, "Test Failed: rte_metrics_deinit failed");
66
67 return TEST_SUCCESS;
68}
69
70/* Test case to get names of latency stats */
71static int test_latencystats_get_names(void)

Callers

nothing calls this directly

Calls 2

rte_latencystats_uninitFunction · 0.85
rte_metrics_deinitFunction · 0.85

Tested by

no test coverage detected