(plots, trace, prefix)
| 182 | return '\n'.join(script) |
| 183 | |
| 184 | def plot_all(plots, trace, prefix): |
| 185 | charts = [] |
| 186 | |
| 187 | for plot in plots: |
| 188 | outfilename = "%s_%d.png" % (prefix, len(charts)) |
| 189 | charts.append(outfilename) |
| 190 | script = generate_script_and_datafile(plot, trace, '~datafile', outfilename) |
| 191 | print('Plotting %s...' % outfilename) |
| 192 | gnuplot(script) |
| 193 | |
| 194 | return charts |
| 195 | |
| 196 | def reclaimed_bytes(row): |
| 197 | return row['total_size_before'] - row['total_size_after'] |
no test coverage detected
searching dependent graphs…