diff options
| author | Eric Huss <eric@huss.org> | 2020-02-25 07:28:46 -0800 |
|---|---|---|
| committer | Eric Huss <eric@huss.org> | 2020-03-12 19:19:18 -0700 |
| commit | 2e46faa3cacc111d77294a7c1a1d8337cd018e80 (patch) | |
| tree | 73148d72f74375b5306f2f09639ef9e035abb14b | |
| parent | 3c48c89e7b9cea0b70a138571dec708fd09ba72f (diff) | |
| download | rust-2e46faa3cacc111d77294a7c1a1d8337cd018e80.tar.gz rust-2e46faa3cacc111d77294a7c1a1d8337cd018e80.zip | |
tidy: Add `test` to RUNTIME_CRATES.
| -rw-r--r-- | src/tools/tidy/src/deps.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/tidy/src/deps.rs b/src/tools/tidy/src/deps.rs index 886bdf6fbbf..1aee4d7cda4 100644 --- a/src/tools/tidy/src/deps.rs +++ b/src/tools/tidy/src/deps.rs @@ -54,7 +54,7 @@ const EXCEPTIONS: &[(&str, &str)] = &[ /// These are the root crates that are part of the runtime. The licenses for /// these and all their dependencies *must not* be in the exception list. -const RUNTIME_CRATES: &[&str] = &["std", "core", "alloc", "panic_abort", "panic_unwind"]; +const RUNTIME_CRATES: &[&str] = &["std", "core", "alloc", "test", "panic_abort", "panic_unwind"]; /// Which crates to check against the whitelist? const WHITELIST_CRATES: &[&str] = &["rustc", "rustc_codegen_llvm"]; |
