tast-tests: Add "informational" and "disabled" attributes.

Add new test attributes that replace the existing "bvt"
attribute:

- Tests with none of the new labels must pass.
- Tests with "informational" run in bvt-perbuild.
- Tests with "disabled" aren't run automatically.

BUG=chromium:853545
TEST=none
CQ-DEPEND=I3abb61d2999c22ed110d9e6ec1d405333d2051ea

Change-Id: Ice0d28ad5c27ca019667f5f2baba43c986ec57d9
Reviewed-on: https://chromium-review.googlesource.com/1105128
Commit-Ready: Dan Erat <derat@chromium.org>
Tested-by: Dan Erat <derat@chromium.org>
Reviewed-by: Dan Erat <derat@chromium.org>
16 files changed
tree: 406776792be241de68a1385c7bf8409ee92ee944
  1. src/
  2. .gitignore
  3. README.md
README.md

Tast (tests)

This repository contains integration tests that are run by Tast.

Directory structure

  • src/chromiumos/tast/
    • local/ - Code related to local (i.e. on-device or “client”) tests.
      • bundles/ - Local test bundles.
        • cros/ - The “cros” local test bundle, containing standard Chrome OS tests. Tests are packaged by category.
      • ... - Packages used only by local tests.
    • remote/ - Code related to remote (i.e. off-device or “server”) tests.
      • bundles/ - Remote test bundles.
        • cros/ - The “cros” remote test bundle, containing standard Chrome OS tests. Tests are packaged by category.
      • ... - Packages used only by remote tests.

Shared code, the main tast executable, the local_test_runner and remote_test_runner executables responsible for running bundles, and documentation are located in the tast repository.

GoDoc