2022-02-14 20:47:01 +00:00
|
|
|
#!/usr/bin/env python3
|
2021-10-15 01:56:44 +00:00
|
|
|
# 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.
|
|
|
|
|
2021-11-12 17:35:42 +00:00
|
|
|
# To check for violations:
|
|
|
|
# $ ./tools/clippy
|
|
|
|
#
|
|
|
|
# To fix violations where possible:
|
|
|
|
# $ ./tools/clippy --fix
|
|
|
|
|
2022-03-25 20:44:28 +00:00
|
|
|
import os
|
2022-02-14 20:47:01 +00:00
|
|
|
from impl.common import CROSVM_ROOT, cwd, run_main, cmd, chdir
|
2022-03-25 20:44:28 +00:00
|
|
|
from impl.test_runner import get_workspace_excludes
|
2022-02-14 20:47:01 +00:00
|
|
|
|
|
|
|
clippy = cmd("cargo clippy")
|
|
|
|
|
2022-03-22 20:04:31 +00:00
|
|
|
excluded_crates: list[str] = []
|
|
|
|
features: str = ""
|
2022-02-14 20:47:01 +00:00
|
|
|
|
2022-03-25 20:44:28 +00:00
|
|
|
if os.name == "posix":
|
2022-03-22 20:04:31 +00:00
|
|
|
features = "--features=all-linux"
|
2022-03-25 20:44:28 +00:00
|
|
|
elif os.name == "nt":
|
2022-03-22 20:04:31 +00:00
|
|
|
excluded_crates = list(get_workspace_excludes("win64"))
|
2022-03-25 20:44:28 +00:00
|
|
|
else:
|
|
|
|
raise Exception(f"Unsupported build target: {os.name}")
|
|
|
|
|
|
|
|
|
|
|
|
def is_crate_excluded(crate: str) -> bool:
|
2022-03-22 20:04:31 +00:00
|
|
|
return crate in excluded_crates
|
2022-03-25 20:44:28 +00:00
|
|
|
|
|
|
|
|
2022-02-14 20:47:01 +00:00
|
|
|
def main(fix: bool = False):
|
|
|
|
chdir(CROSVM_ROOT)
|
|
|
|
|
|
|
|
# Note: Clippy checks are configured in .cargo/config.toml
|
2022-03-25 20:44:28 +00:00
|
|
|
common_args = [
|
2022-02-14 20:47:01 +00:00
|
|
|
"--fix" if fix else None,
|
|
|
|
"--all-targets",
|
|
|
|
"--",
|
|
|
|
"-Dwarnings",
|
|
|
|
]
|
|
|
|
print("Clippy crosvm workspace")
|
2022-03-22 20:04:31 +00:00
|
|
|
clippy(
|
|
|
|
"--workspace",
|
|
|
|
features,
|
|
|
|
*[f"--exclude={crate}" for crate in excluded_crates],
|
|
|
|
*common_args,
|
|
|
|
).fg()
|
2022-02-14 20:47:01 +00:00
|
|
|
|
|
|
|
for crate in CROSVM_ROOT.glob("common/*/Cargo.toml"):
|
2022-03-25 20:44:28 +00:00
|
|
|
if not is_crate_excluded(crate.parent.name):
|
|
|
|
print("Clippy", crate.parent.relative_to(CROSVM_ROOT))
|
|
|
|
with cwd(crate.parent):
|
|
|
|
clippy("--all-features", *common_args).fg()
|
|
|
|
else:
|
|
|
|
print("Skipping crate", crate.parent.relative_to(CROSVM_ROOT))
|
2022-02-14 20:47:01 +00:00
|
|
|
|
|
|
|
|
2022-03-22 20:04:31 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
run_main(main)
|