We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 993e8ac commit b07f1b0Copy full SHA for b07f1b0
ci/base-tests.sh
@@ -11,14 +11,15 @@ cargo build --features debugging
11
cargo test --features debugging
12
# for faster build, share target dir between subcrates
13
export CARGO_TARGET_DIR=`pwd`/target/
14
-cd clippy_lints && cargo test && cd ..
15
-cd rustc_tools_util && cargo test && cd ..
16
-cd clippy_dev && cargo test && cd ..
+(cd clippy_lints && cargo test)
+(cd rustc_tools_util && cargo test)
+(cd clippy_dev && cargo test)
17
18
# make sure clippy can be called via ./path/to/cargo-clippy
19
-cd clippy_workspace_tests
20
-../target/debug/cargo-clippy
21
-cd ..
+(
+ cd clippy_workspace_tests
+ ../target/debug/cargo-clippy
22
+)
23
24
# Perform various checks for lint registration
25
./util/dev update_lints --check
0 commit comments