mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 20:48:55 +00:00
18ce5713e6
Add a script to run `cargo fmt` on all Rust code contained in crosvm. This is different from `cargo fmt --all` which formats multiple crates but a single workspace only. Crosvm consists of multiple workspaces. Usage: $ bin/fmt To print a diff and exit 1 if code is not formatted, but without changing any files, use: $ bin/fmt --check TEST=those commands TEST=local kokoro Change-Id: I4194509ad3a1bbc829c4b1069d54d940b927113b Reviewed-on: https://chromium-review.googlesource.com/1477498 Commit-Ready: David Tolnay <dtolnay@chromium.org> Tested-by: David Tolnay <dtolnay@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Zach Reizner <zachr@chromium.org>
40 lines
907 B
Bash
Executable file
40 lines
907 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Run `cargo fmt` on all Rust code contained in crosvm. This is different from
|
|
# `cargo fmt --all` which formats multiple crates but a single workspace only.
|
|
# Crosvm consists of multiple workspaces.
|
|
#
|
|
# 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 -euo pipefail
|
|
|
|
# Change into directory of script, which is crosvm/bin.
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
|
|
# Jump up to root directory of crosvm repo.
|
|
cd ..
|
|
|
|
# Keep track of whether any cargo fmt invocation exited with error.
|
|
EXIT=0
|
|
|
|
FIND_CARGO_TOMLS="$(find "$PWD" -name Cargo.toml)"
|
|
|
|
while read path_to_cargo_toml; do
|
|
cd "$(dirname "$path_to_cargo_toml")"
|
|
|
|
if grep --quiet '\[workspace\]' Cargo.toml; then
|
|
if ! cargo fmt --all -- "$@"; then
|
|
EXIT=1
|
|
fi
|
|
fi
|
|
done <<< "$FIND_CARGO_TOMLS"
|
|
|
|
exit $EXIT
|