| 406 | } |
| 407 | |
| 408 | static int |
| 409 | test_case_array_u64(void) |
| 410 | { |
| 411 | int i; |
| 412 | |
| 413 | rte_tel_data_start_array(&response_data, RTE_TEL_UINT_VAL); |
| 414 | for (i = 0; i < 5; i++) |
| 415 | rte_tel_data_add_array_uint(&response_data, i); |
| 416 | return CHECK_OUTPUT("[0,1,2,3,4]"); |
| 417 | } |
| 418 | |
| 419 | static int |
| 420 | test_case_array_uint_hex_padding(void) |
nothing calls this directly
no test coverage detected