| 416 | } |
| 417 | |
| 418 | static const char *bytes_per_sec_human_dnum(void) |
| 419 | { |
| 420 | if (starttime == (time_t)-1 || endtime == (time_t)-1) |
| 421 | return "UNKNOWN"; |
| 422 | return human_dnum((total_written + total_read) / (0.5 + (endtime - starttime)), 2); |
| 423 | } |
| 424 | |
| 425 | static void output_summary(void) |
| 426 | { |
no test coverage detected