mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 20:48:55 +00:00
20 lines
610 B
Text
20 lines
610 B
Text
|
#!/bin/bash
|
||
|
# Copyright 2019 The Chromium OS Authors. All rights reserved.
|
||
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
# found in the LICENSE file.
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
||
|
cd ../
|
||
|
|
||
|
rustup default "$(cat rust-toolchain)"
|
||
|
rustup component add rustfmt-preview
|
||
|
cargo --version && rustc --version && rustfmt --version
|
||
|
echo "Running cargo test"
|
||
|
cargo test --no-fail-fast --features plugin,default-no-sandbox,wl-dmabuf,gpu,tpm,gpu-forward \
|
||
|
--all --exclude aarch64 $TEST_FLAGS -- \
|
||
|
--test-threads=1 $TEST_RUNNER_FLAGS
|
||
|
echo "Running cargo fmt"
|
||
|
bin/fmt --check
|