diff options
| author | bors <bors@rust-lang.org> | 2021-07-26 12:06:07 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2021-07-26 12:06:07 +0000 |
| commit | 7d6946df34f74e75a2048fee5e3eb48236028b49 (patch) | |
| tree | a9dd4b1e6797a7fb516d93e370be50c4318e973d | |
| parent | 02d70f36042a6c7142bacda8156b2bf8459166cb (diff) | |
| parent | ea97a5a5d789b0bf4e4ae984e04280e5c5847b82 (diff) | |
| download | rust-7d6946df34f74e75a2048fee5e3eb48236028b49.tar.gz rust-7d6946df34f74e75a2048fee5e3eb48236028b49.zip | |
Auto merge of #7485 - camsteffen:add-test-externs, r=flip1995
Add to test third party crates list changelog: none
| -rw-r--r-- | tests/compile-test.rs | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/tests/compile-test.rs b/tests/compile-test.rs index caa19e39ccd..ec26981bd00 100644 --- a/tests/compile-test.rs +++ b/tests/compile-test.rs @@ -34,7 +34,16 @@ fn clippy_driver_path() -> PathBuf { // as what we manually pass to `cargo` invocation fn third_party_crates() -> String { use std::collections::HashMap; - static CRATES: &[&str] = &["serde", "serde_derive", "regex", "clippy_lints", "syn", "quote"]; + static CRATES: &[&str] = &[ + "clippy_lints", + "clippy_utils", + "if_chain", + "quote", + "regex", + "serde", + "serde_derive", + "syn", + ]; let dep_dir = cargo::TARGET_LIB.join("deps"); let mut crates: HashMap<&str, PathBuf> = HashMap::with_capacity(CRATES.len()); for entry in fs::read_dir(dep_dir).unwrap() { |
