| 68 | } |
| 69 | |
| 70 | static void |
| 71 | output_env_info(void) |
| 72 | { |
| 73 | snprintf(output_str[0], MAX_OUTPUT_STR_LEN, "Test Environment:\n"); |
| 74 | snprintf(output_str[1], MAX_OUTPUT_STR_LEN, "CPU frequency,%.3lf Ghz", |
| 75 | rte_get_timer_hz() / 1000000000.0); |
| 76 | |
| 77 | output_csv(true); |
| 78 | } |
| 79 | |
| 80 | static void |
| 81 | output_header(uint32_t case_id, struct test_configure *case_cfg) |
no test coverage detected