[infra] Bump dependencies.

Use FUCHSIA_TEST_TARGET.

Change-Id: I7b2d99d6e64d2cc15cd03c13fa2de226e2a7cf66
Reviewed-on: https://fuchsia-review.googlesource.com/c/template/driver/+/982194
Reviewed-by: Chase Latta <chaselatta@google.com>
Reviewed-by: Jiaming Li <lijiaming@google.com>
4 files changed
tree: a175384ab24de029d91c67311c436c7c6b8a384e
  1. manifests/
  2. scripts/
  3. third_party/
  4. tools/
  5. .bazelrc
  6. .gitignore
  7. .gitmodules
  8. AUTHORS
  9. BUILD.bazel
  10. CONTRIBUTING.md
  11. fuchsia_env.toml
  12. LICENSE
  13. OWNERS
  14. PATENTS
  15. README.md
  16. WORKSPACE.bazel
README.md

Fuchsia <change_me> Driver Repository

<change_me: This repository is a template that we will use when creating new driver repositories for Fuchsia>.

Template repository is located in: https://fuchsia.googlesource.com/template/driver/

Getting Started

To perform an initial bootstrap, execute the following:

  1. In a terminal, clone the repository:

    git clone https://fuchsia.googlesource.com/drivers/<change_me>
    
  2. Change to that directory:

    cd <change_me>
    
  3. Fetch all git submodules:

    git submodule init && git submodule update --recursive
    
  4. Bootstrap the build environment:

    scripts/bootstrap.sh
    
  5. Fetch and build the SDK:

    tools/bazel build @fuchsia_sdk//:fuchsia_toolchain_sdk
    

See the getting started guide for more info.

Building And Testing Driver

Run the full test-suite with:

tools/bazel test :tests

Run only the <change_me> driver tests with:

tools/bazel test <change_me>:<fuchsia_unittest_package_name>