Skip to content

Commit

Permalink
Move use statements.
Browse files Browse the repository at this point in the history
Signed-off-by: OGINO Masanori <[email protected]>
  • Loading branch information
omasanori authored and thestinger committed Aug 3, 2013
1 parent 6829397 commit def8891
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/libextra/flatpipes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -633,16 +633,12 @@ pub mod bytepipes {
#[cfg(test)]
mod test {

use flatpipes::{Flattener, Unflattener};
use flatpipes::bytepipes::*;
use flatpipes::BytePort;
use flatpipes::pod;
use flatpipes::serial;
use io_util::BufReader;
use flatpipes::{BytePort, FlatChan, FlatPort};

use std::comm;
use std::io::BytesWriter;
use std::result;
use std::task;

#[test]
Expand Down Expand Up @@ -727,7 +723,11 @@ mod test {

// FIXME #2064: Networking doesn't work on x86
// XXX Broken until networking support is added back
/*#[test]
/*
use flatpipes::{Flattener, Unflattener, FlatChan, FlatPort};
use flatpipes::bytepipes::*;
#[test]
#[cfg(target_arch = "x86_64")]
fn test_pod_tcp_stream() {
fn reader_port(buf: TcpSocketBuf
Expand Down Expand Up @@ -767,6 +767,8 @@ mod test {
port: uint) {
use std::cell::Cell;
use std::comm;
use std::result;
use net::ip;
use net::tcp;
use uv;
Expand Down

6 comments on commit def8891

@thestinger
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

r+ p=5000

@bors
Copy link
Contributor

@bors bors commented on def8891 Aug 3, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from thestinger
at def8891

@bors
Copy link
Contributor

@bors bors commented on def8891 Aug 3, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging mozilla/rust/rollup = def8891 into auto

@bors
Copy link
Contributor

@bors bors commented on def8891 Aug 3, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

mozilla/rust/rollup = def8891 merged ok, testing candidate = 20fad0f

@bors
Copy link
Contributor

@bors bors commented on def8891 Aug 3, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = 20fad0f

Please sign in to comment.