mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-25 05:03:05 +00:00
89ea04b4da
The updated presubmit script allows parallel execution of checks with --tmux. It will also try to detect if the host is set up for aarch64 builds and use the dev container if needed. BUG=None TEST=./tools/presubmit --tmux Change-Id: I0247c39d826ee38d5f7f689de5e63380fe789cf4 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3292101 Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Dennis Kempin <denniskempin@google.com> Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
30 lines
668 B
Bash
Executable file
30 lines
668 B
Bash
Executable file
#!/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.
|
|
|
|
# Run `rustfmt` on all Rust code contained in the crosvm workspace, including
|
|
# all commmon/* crates as well.
|
|
#
|
|
# Usage:
|
|
#
|
|
# $ bin/fmt
|
|
#
|
|
# To print a diff and exit 1 if code is not formatted, but without changing any
|
|
# files, use:
|
|
#
|
|
# $ bin/fmt --check
|
|
#
|
|
|
|
set -e
|
|
cd "$(dirname $0)/.."
|
|
|
|
echo "Fmt crosvm workspace"
|
|
cargo fmt --all -- "$@"
|
|
|
|
for crate in common/*; do
|
|
if [ -e "${crate}/Cargo.toml" ]; then
|
|
echo "Fmt ${crate}"
|
|
(cd "${crate}" && cargo fmt)
|
|
fi
|
|
done
|