tast-tests: Make chrome.ExtraArgs variadic.

Make the chrome.ExtraArgs function be variadic to remove the
need for callers to type []string{} boilerplate.

BUG=none
TEST=built and ran tests that use chrome.ExtraArgs

Change-Id: I0abd3edbb8489ef4854d344a6375378ae65a4c9e
Reviewed-on: https://chromium-review.googlesource.com/1470685
Commit-Ready: Dan Erat <derat@chromium.org>
Tested-by: Dan Erat <derat@chromium.org>
Reviewed-by: Shuhei Takahashi <nya@chromium.org>
Reviewed-by: Eric Caruso <ejcaruso@chromium.org>
19 files changed
tree: 72438159bb775fc701523a8ba4ab94266602500b
  1. src/
  2. tools/
  3. .gitignore
  4. OWNERS
  5. PRESUBMIT.cfg
  6. 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