auto merge of #13096 : sstewartgallus/rust/cleanup-test-warnings, r=huonw

This commit is contained in:
bors 2014-03-23 16:31:52 -07:00
commit 2c7f3b850c
4 changed files with 5 additions and 6 deletions

View File

@ -1282,10 +1282,10 @@ mod test {
}
iotest!(fn binary_file() {
use rand::{rng, Rng};
use rand::{Rng, task_rng};
let mut bytes = [0, ..1024];
rng().fill_bytes(bytes);
task_rng().fill_bytes(bytes);
let tmpdir = tmpdir();

View File

@ -66,7 +66,6 @@ mod imp {
use cast;
use clone::Clone;
use option::{Option, Some, None};
use ptr::RawPtr;
use iter::Iterator;
use unstable::mutex::{StaticNativeMutex, NATIVE_MUTEX_INIT};
use mem;
@ -124,6 +123,7 @@ mod imp {
#[cfg(not(test))]
unsafe fn load_argc_and_argv(argc: int, argv: **u8) -> ~[~[u8]] {
use c_str::CString;
use ptr::RawPtr;
use {slice, libc};
use slice::CloneableVector;

View File

@ -433,8 +433,8 @@ mod test {
#[test]
fn rng() {
use rand::{rng, Rng};
let mut r = rng();
use rand::{Rng, task_rng};
let mut r = task_rng();
let _ = r.next_u32();
}

View File

@ -1360,7 +1360,6 @@ mod tests {
use mem::{drop, size_of};
use ops::Drop;
use option::{Some, None};
use ptr;
use container::Container;
use slice::{Vector, MutableVector, ImmutableVector};