diff options
| author | Andy Russell <arussell123@gmail.com> | 2019-05-09 12:03:13 -0400 |
|---|---|---|
| committer | Andy Russell <arussell123@gmail.com> | 2019-05-09 12:03:13 -0400 |
| commit | b2f71fb540faa4218de506c4d82bbcf237ea78d6 (patch) | |
| tree | f400b7223dc55e118897880e1063679010245b89 /src/bootstrap/builder.rs | |
| parent | e6305805a7d36b23c79f8308774778ba6481ce47 (diff) | |
| download | rust-b2f71fb540faa4218de506c4d82bbcf237ea78d6.tar.gz rust-b2f71fb540faa4218de506c4d82bbcf237ea78d6.zip | |
remove unneeded `extern crate`s from build tools
Diffstat (limited to 'src/bootstrap/builder.rs')
| -rw-r--r-- | src/bootstrap/builder.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/bootstrap/builder.rs b/src/bootstrap/builder.rs index c84eb6476e0..51663e93169 100644 --- a/src/bootstrap/builder.rs +++ b/src/bootstrap/builder.rs @@ -11,6 +11,8 @@ use std::path::{Path, PathBuf}; use std::process::Command; use std::time::{Duration, Instant}; +use build_helper::t; + use crate::cache::{Cache, Interned, INTERNER}; use crate::check; use crate::compile; @@ -1308,6 +1310,8 @@ mod __test { use crate::config::Config; use std::thread; + use pretty_assertions::assert_eq; + fn configure(host: &[&str], target: &[&str]) -> Config { let mut config = Config::default_opts(); // don't save toolstates |
