(name string)
| 291 | } |
| 292 | |
| 293 | func tbRefStr(name string) string { |
| 294 | tb, ok := testBlobs[name] |
| 295 | if !ok { |
| 296 | panic(name + " not found") |
| 297 | } |
| 298 | return tb.BlobRef().String() |
| 299 | } |
| 300 | |
| 301 | func tbSize(name string) string { |
| 302 | tb, ok := testBlobs[name] |