| 545 | } |
| 546 | |
| 547 | static int |
| 548 | test_ethdev_configure_ports(void) |
| 549 | { |
| 550 | TEST_ASSERT((test_ethdev_configure_port(tx_porta) == 0), |
| 551 | "test ethdev configure ports tx_porta is failed"); |
| 552 | TEST_ASSERT((test_ethdev_configure_port(rx_portb) == 0), |
| 553 | "test ethdev configure ports rx_portb is failed"); |
| 554 | TEST_ASSERT((test_ethdev_configure_port(rxtx_portc) == 0), |
| 555 | "test ethdev configure ports rxtx_portc is failed"); |
| 556 | |
| 557 | return TEST_SUCCESS; |
| 558 | } |
| 559 | |
| 560 | static int |
| 561 | test_get_stats_for_port(void) |
nothing calls this directly
no test coverage detected