Test case to uninit latency stats */
| 55 | |
| 56 | /* Test case to uninit latency stats */ |
| 57 | static 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 */ |
| 71 | static int test_latencystats_get_names(void) |
nothing calls this directly
no test coverage detected