mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 20:48:55 +00:00
009cb53c76
Cargo already uses the term 'integration test' for tests living in the tests/ directory of a crate. To prevent confusion, rename our 'integration_tests' crate to 'e2e_tests'. BUG=None TEST=presubmit Change-Id: Icfa819eaed08be54ab0f36092f1ba367f3f1ce88 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4004977 Commit-Queue: Dennis Kempin <denniskempin@google.com> Reviewed-by: Zihan Chen <zihanchen@google.com>
11 lines
457 B
Bash
Executable file
11 lines
457 B
Bash
Executable file
#!/bin/bash
|
|
# Copyright 2021 The ChromiumOS Authors
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file
|
|
|
|
# We require the crosvm binary to build before running the integration tests.
|
|
# There is an RFC for cargo to allow for this kind of dependency:
|
|
# https://github.com/rust-lang/cargo/issues/9096
|
|
cd $(dirname $0)
|
|
(cd .. && cargo build $@ && cargo build --features=direct --bin crosvm-direct)
|
|
cargo test $@
|