@@ -889,11 +889,11 @@ CU_TestInfo pktio_suite_unsegmented[] = {
};
CU_TestInfo pktio_suite_segmented[] = {
- {"pktio poll queues", pktio_test_poll_queue},
- {"pktio poll multi", pktio_test_poll_multi},
- {"pktio sched queues", pktio_test_sched_queue},
- {"pktio sched multi", pktio_test_sched_multi},
- {"pktio jumbo frames", pktio_test_jumbo},
+ _CU_TEST_INFO(pktio_test_poll_queue),
+ _CU_TEST_INFO(pktio_test_poll_multi),
+ _CU_TEST_INFO(pktio_test_sched_queue),
+ _CU_TEST_INFO(pktio_test_sched_multi),
+ _CU_TEST_INFO(pktio_test_jumbo),
CU_TEST_INFO_NULL
};
Use _CU_TEST_INFO macro in the segmented packet CU_TestInfo array so that the test name matches the function name, in keeping with all other tests. Signed-off-by: Stuart Haslam <stuart.haslam@linaro.org> --- test/validation/pktio/pktio.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-)