()
| 122 | } |
| 123 | |
| 124 | func (p *progress) endSummary() { |
| 125 | p.shutdown <- struct{}{} |
| 126 | <-p.shutdown |
| 127 | |
| 128 | p.reportOnce() |
| 129 | |
| 130 | total := x.FixedDuration(time.Since(p.start)) |
| 131 | fmt.Printf("Total: %v\n", total) |
| 132 | } |
| 133 | |
| 134 | var suffixes = [...]string{"", "k", "M", "G", "T"} |
| 135 |
no test coverage detected