[bloatalyzer] Fixing hangs

Replaces the ReadCSV goroutine and associated channel with a function
that simply passes along data, as I suspect the intermittent failures
we saw were an issue with the StdoutPipe never hitting the EOF.

Also wraps the data processing in a goroutine so we should not deadlock
on reads.

Change-Id: Id7f2729e5fb7d0a0edf70e4b7a5ca8dab2ea3510
4 files changed
tree: 094a10157b83e25b0a1b549c347b3a9b1822cf4d
  1. bloaty/
  2. cache/
  3. cmd/
  4. color/
  5. elflib/
  6. gndoc/
  7. isatty/
  8. logger/
  9. ninjalog/
  10. symbolize/
  11. .gitignore
  12. go.mod
  13. LICENSE
  14. manifest
  15. PATENTS
  16. README.md
README.md

tools

This repo contains tools used in Fuchsia build and development.

Go packages from here are automatically built and uploaded to CIPD and Google Storage by bots using the tools recipe. To add a tool to the build:

  • Edit the bot config.
  • Find the builder_mixins section with name: "tools".
  • Edit the JSON in properties_j to add a string to the packages list:
"fuchsia.googlesource.com/tools/cmd/your-new-tool"