Test case to update the latency stats */
| 44 | |
| 45 | /* Test case to update the latency stats */ |
| 46 | static int test_latency_update(void) |
| 47 | { |
| 48 | int ret = 0; |
| 49 | |
| 50 | ret = rte_latencystats_update(); |
| 51 | TEST_ASSERT(ret >= 0, "Test Failed: rte_latencystats_update failed"); |
| 52 | |
| 53 | return TEST_SUCCESS; |
| 54 | } |
| 55 | |
| 56 | /* Test case to uninit latency stats */ |
| 57 | static int test_latency_uninit(void) |
nothing calls this directly
no test coverage detected