about summary refs log tree commit diff
path: root/src/libstd/io
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-12-13 11:30:59 -0800
committerAlex Crichton <alex@alexcrichton.com>2013-12-24 19:59:53 -0800
commitafd4e2ad8dc4112b99c8d30996ff0bb5b0516b53 (patch)
tree9e4bd858bbb5e3c0b3526c0976d0ca032217c16a /src/libstd/io
parentf5d9b2ca6d9a360112f06b3044897c22736c52b8 (diff)
downloadrust-afd4e2ad8dc4112b99c8d30996ff0bb5b0516b53.tar.gz
rust-afd4e2ad8dc4112b99c8d30996ff0bb5b0516b53.zip
rustuv: Get all tests passing again after refactor
All tests except for the homing tests are now working again with the
librustuv/libgreen refactoring. The homing-related tests are currently commented
out and now placed in the rustuv::homing module.

I plan on refactoring scheduler pool spawning in order to enable more homing
tests in a future commit.
Diffstat (limited to 'src/libstd/io')
-rw-r--r--src/libstd/io/mod.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs
index 8481de73c7f..2d52986294d 100644
--- a/src/libstd/io/mod.rs
+++ b/src/libstd/io/mod.rs
@@ -313,9 +313,8 @@ pub use self::net::udp::UdpStream;
 pub use self::pipe::PipeStream;
 pub use self::process::Process;
 
-/// Testing helpers
-#[cfg(test)]
-mod test;
+/// Various utility functions useful for writing I/O tests
+pub mod test;
 
 /// Synchronous, non-blocking filesystem operations.
 pub mod fs;