tast: Make run.readTestOutput take Config struct.

Pass a Config struct to run's readTestOutput function
instead of passing the logger and results dir as individual
arguments. No functional changes, but I'm doing this so I
can pass an additional message timeout via the Config struct
in a later change.

BUG=chromium:778389
TEST=unit tests pass; local and remote tests still work

Change-Id: I1589f40bebb8fb10f7708b52452cbb719c754d99
Reviewed-on: https://chromium-review.googlesource.com/754274
Commit-Ready: Dan Erat <derat@chromium.org>
Tested-by: Dan Erat <derat@chromium.org>
Reviewed-by: Jason Clinton <jclinton@chromium.org>
4 files changed
tree: 40ebcea794c7620ce826691fa2d355ca282d56f2
  1. docs/
  2. src/
  3. README.md
README.md

Tast

Tast is an integration-testing system for Chrome OS. Its focus is on maintainability, speed, and ease of interpreting and reproducing test results. It supports building, deploying, and running tests. It doesn't implement other functionality like managing labs of devices used for testing, scheduling tests, or storing test results.

To try it out, see the quickstart document. The overview is a good starting point for learning more about how the system is structured.

Directory structure

This repository is organized in accordance with the Go in Chromium OS suggestions.

  • src/chromiumos/tast/
    • cmd/ - main package for the tast executable used to build and run tests.
      • ... - Packages used only by the tast executable.
    • common/ - Packages shared between some combination of tast/ and local/ and remote/ from the tast-tests repository.

Tests are located in the tast-tests repository.

Documentation

For more details, see the docs subdirectory.

Package documentation is available at godoc.org.