| 453 | } |
| 454 | |
| 455 | static int |
| 456 | test_ring_mem_cmp(void *src, void *dst, unsigned int size) |
| 457 | { |
| 458 | int ret; |
| 459 | |
| 460 | ret = memcmp(src, dst, size); |
| 461 | if (ret) { |
| 462 | rte_hexdump(stdout, "src", src, size); |
| 463 | rte_hexdump(stdout, "dst", dst, size); |
| 464 | printf("data after dequeue is not the same\n"); |
| 465 | } |
| 466 | |
| 467 | return ret; |
| 468 | } |
| 469 | |
| 470 | static void |
| 471 | test_ring_print_test_string(const char *istr, unsigned int api_type, int esize) |
no test coverage detected