about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2016-04-05 11:18:24 -0700
committerAlex Crichton <alex@alexcrichton.com>2016-04-12 15:55:14 -0700
commit7bfaeaaf9c41439f9de0cfb03680909de2ca4004 (patch)
tree94319a9f35a586b21c277a424f5a12944e1b4fb5 /src/bootstrap
parent9dd3c54a2c787c79037f5c772b12c7d2d2f87b18 (diff)
tidy: Add a check to ensure Cargo.toml is in sync
This verifies that the crates listed in the `[dependencies]` section of
`Cargo.toml` are a subset of the crates listed in `lib.rs` for our in-tree
crates. This should help ensure that when we refactor crates over time we keep
these dependency lists in sync.
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/build/step.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bootstrap/build/step.rs b/src/bootstrap/build/step.rs
index 626cf758631..45e0cb11010 100644
--- a/src/bootstrap/build/step.rs
+++ b/src/bootstrap/build/step.rs
@@ -323,8 +323,7 @@ impl<'a> Step<'a> {
             }
 
             Source::ToolLinkchecker { stage } |
-            Source::ToolTidy { stage } |
-            Source::ToolCargoTest { stage } => {
+            Source::ToolTidy { stage } => {
                 vec![self.libstd(self.compiler(stage))]
             }
             Source::ToolErrorIndex { stage } |