From ca288d26953deaa11fc37df2082d7b42bcca044d Mon Sep 17 00:00:00 2001 From: Guillaume Endignoux Date: Thu, 24 Sep 2020 16:33:23 +0200 Subject: [PATCH] Add Clippy to run_desktop_tests.sh script. --- run_desktop_tests.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/run_desktop_tests.sh b/run_desktop_tests.sh index f2dff08..6c02041 100755 --- a/run_desktop_tests.sh +++ b/run_desktop_tests.sh @@ -30,6 +30,9 @@ cd tools/heapviz cargo fmt --all -- --check cd ../.. +echo "Running Clippy lints..." +cargo clippy --all-targets --features std -- -D warnings + echo "Building sha256sum tool..." cargo build --manifest-path third_party/tock/tools/sha256sum/Cargo.toml echo "Checking that heapviz tool builds properly..."