* Test to check if a non-power-of-2 count causes the create * function to fail correctly */
| 59 | * function to fail correctly |
| 60 | */ |
| 61 | static int |
| 62 | test_create_count_odd(void) |
| 63 | { |
| 64 | struct rte_event_ring *r = rte_event_ring_create("test_event_ring_count", |
| 65 | 4097, SOCKET_ID_ANY, 0); |
| 66 | if (r != NULL) |
| 67 | return -1; |
| 68 | return 0; |
| 69 | } |
| 70 | |
| 71 | static int |
| 72 | test_lookup_null(void) |
no test coverage detected