tast.graphics.sanity: only run on internal display.

In order to stabilize the test, add dependency on display_backlight.
(Tast does not support hw dependencies yet.)

BUG=chromium:1039042
TEST=tast run DUT graphics.Sanity

Change-Id: I4f174faa3d8db3f8baee205323f4e090cd3053b2
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/tast-tests/+/2052424
Reviewed-by: Ilja H. Friedel <ihf@chromium.org>
Reviewed-by: Jun Mukai <mukai@chromium.org>
Reviewed-by: Hidehiko Abe <hidehiko@chromium.org>
Commit-Queue: Ilja H. Friedel <ihf@chromium.org>
Tested-by: Ilja H. Friedel <ihf@chromium.org>
(cherry picked from commit d6b27344779851da49d16e4deacf712e8ac0fbb8)
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/tast-tests/+/2066141
1 file changed
tree: 4a7500629b11d8ef7ff1965d943919ebef222eeb
  1. android/
  2. helpers/
  3. src/
  4. tools/
  5. .gitignore
  6. OWNERS
  7. PRESUBMIT.cfg
  8. PRESUBMIT.py
  9. README.md
README.md

Tast (tests)

This repository contains integration tests that are run by Tast.

Directory structure

  • helpers/ - Source code for binaries executed by tests.
    • local/ - Helpers for local tests that are compiled and installed to /usr/local/libexec/tast/helpers/local/cros by the tast-local-helpers-cros package.
  • 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