diff options
| author | bors <bors@rust-lang.org> | 2014-12-27 00:48:41 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-12-27 00:48:41 +0000 |
| commit | 3c60bc02ce6de2823d0b837f90d5db0077fce6f7 (patch) | |
| tree | 465805adb25fba470b8da95ff820a363f32a8dee /src/libstd | |
| parent | c06edbad34f2f8f2fa5138e855a442db1c6324d1 (diff) | |
| parent | 4b92a5a229ebe7635851fc7bad94108f9de8dcc6 (diff) | |
| download | rust-3c60bc02ce6de2823d0b837f90d5db0077fce6f7.tar.gz rust-3c60bc02ce6de2823d0b837f90d5db0077fce6f7.zip | |
auto merge of #19254 : nick29581/rust/dxr-glob, r=pcwalton
There is also some work here to make resolve a bit more stable - it no longer overwrites a specific import with a glob import. r?
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/ascii.rs | 2 | ||||
| -rw-r--r-- | src/libstd/c_str.rs | 3 | ||||
| -rw-r--r-- | src/libstd/comm/mod.rs | 9 | ||||
| -rw-r--r-- | src/libstd/io/mem.rs | 2 | ||||
| -rw-r--r-- | src/libstd/io/net/pipe.rs | 2 | ||||
| -rw-r--r-- | src/libstd/io/net/udp.rs | 4 | ||||
| -rw-r--r-- | src/libstd/io/process.rs | 2 | ||||
| -rw-r--r-- | src/libstd/path/posix.rs | 4 | ||||
| -rw-r--r-- | src/libstd/path/windows.rs | 4 |
9 files changed, 16 insertions, 16 deletions
diff --git a/src/libstd/ascii.rs b/src/libstd/ascii.rs index 6c213555ce4..072ac89c7c8 100644 --- a/src/libstd/ascii.rs +++ b/src/libstd/ascii.rs @@ -630,8 +630,8 @@ static ASCII_UPPER_MAP: [u8, ..256] = [ #[cfg(test)] mod tests { - use prelude::*; use super::*; + use prelude::*; use char::from_u32; macro_rules! v2ascii { diff --git a/src/libstd/c_str.rs b/src/libstd/c_str.rs index fb44961017f..fb369924c64 100644 --- a/src/libstd/c_str.rs +++ b/src/libstd/c_str.rs @@ -534,13 +534,12 @@ pub unsafe fn from_c_multistring<F>(buf: *const libc::c_char, #[cfg(test)] mod tests { + use super::*; use prelude::*; use ptr; use thread::Thread; use libc; - use super::*; - #[test] fn test_str_multistring_parsing() { unsafe { diff --git a/src/libstd/comm/mod.rs b/src/libstd/comm/mod.rs index 7352cdfbfe7..d3bfaab83da 100644 --- a/src/libstd/comm/mod.rs +++ b/src/libstd/comm/mod.rs @@ -333,12 +333,10 @@ macro_rules! test { mod $name { #![allow(unused_imports)] - use prelude::*; - use rt; - - use comm::*; use super::*; + use comm::*; use thread::Thread; + use prelude::*; $(#[$a])* #[test] fn f() { $b } } @@ -1022,10 +1020,9 @@ impl<T: Send> Drop for Receiver<T> { #[cfg(test)] mod test { + use super::*; use prelude::*; - use os; - use super::*; pub fn stress_factor() -> uint { match os::getenv("RUST_TEST_STRESS") { diff --git a/src/libstd/io/mem.rs b/src/libstd/io/mem.rs index 431e11cf9ca..01151059530 100644 --- a/src/libstd/io/mem.rs +++ b/src/libstd/io/mem.rs @@ -399,9 +399,9 @@ impl<'a> Buffer for BufReader<'a> { #[cfg(test)] mod test { extern crate "test" as test_crate; - use prelude::*; use super::*; use io::*; + use prelude::*; use io; use self::test_crate::Bencher; diff --git a/src/libstd/io/net/pipe.rs b/src/libstd/io/net/pipe.rs index 01eb33b44f9..4afc72cde71 100644 --- a/src/libstd/io/net/pipe.rs +++ b/src/libstd/io/net/pipe.rs @@ -266,10 +266,10 @@ impl sys_common::AsInner<UnixAcceptorImp> for UnixAcceptor { #[cfg(test)] #[allow(experimental)] mod tests { - use prelude::*; use super::*; use io::*; use io::test::*; + use prelude::*; use io::fs::PathExtensions; use time::Duration; diff --git a/src/libstd/io/net/udp.rs b/src/libstd/io/net/udp.rs index f462143faf4..a36703172c3 100644 --- a/src/libstd/io/net/udp.rs +++ b/src/libstd/io/net/udp.rs @@ -249,10 +249,10 @@ impl Writer for UdpStream { #[allow(experimental)] mod test { use super::*; - use prelude::*; - use io::*; use io::net::ip::*; + use io::*; use io::test::*; + use prelude::*; // FIXME #11530 this fails on android because tests are run as root #[cfg_attr(any(windows, target_os = "android"), ignore)] diff --git a/src/libstd/io/process.rs b/src/libstd/io/process.rs index 4a0a3936424..93aa627ffba 100644 --- a/src/libstd/io/process.rs +++ b/src/libstd/io/process.rs @@ -744,9 +744,9 @@ mod tests { #![allow(unused_imports)] use super::*; - use prelude::*; use io::timer::*; use io::*; + use prelude::*; use io::fs::PathExtensions; use time::Duration; use str; diff --git a/src/libstd/path/posix.rs b/src/libstd/path/posix.rs index f0a00b421c3..d941665f048 100644 --- a/src/libstd/path/posix.rs +++ b/src/libstd/path/posix.rs @@ -447,8 +447,10 @@ static dot_dot_static: &'static [u8] = b".."; #[cfg(test)] mod tests { - use prelude::*; use super::*; + use prelude::Option::{mod, Some, None}; + use prelude::{Vec, Clone, AsSlice, SliceExt, CloneSliceExt, IteratorExt}; + use prelude::{DoubleEndedIteratorExt, Str, StrExt, ToString, GenericPath}; use str; macro_rules! t { diff --git a/src/libstd/path/windows.rs b/src/libstd/path/windows.rs index 7d10188c437..12da1752adf 100644 --- a/src/libstd/path/windows.rs +++ b/src/libstd/path/windows.rs @@ -1121,8 +1121,10 @@ fn prefix_len(p: Option<PathPrefix>) -> uint { #[cfg(test)] mod tests { - use prelude::*; use super::*; + use prelude::Option::{mod, Some, None}; + use prelude::{Vec, Clone, AsSlice, SliceExt, CloneSliceExt, IteratorExt}; + use prelude::{DoubleEndedIteratorExt, Str, ToString, GenericPath}; use super::PathPrefix::*; use super::parse_prefix; |
