about summary refs log tree commit diff
path: root/src/libstd/lib.rs
diff options
context:
space:
mode:
authorAaron Turon <aturon@mozilla.com>2014-09-30 21:09:29 -0700
committerAaron Turon <aturon@mozilla.com>2014-10-01 10:33:11 -0700
commit60b859ab8ac8c48b7adbefe81d0e5d3c772b080a (patch)
treedd69212497286ffa9073ec5838adf0e51c246af4 /src/libstd/lib.rs
parent49fcb27df63b845c42d4883c47d2cfc512edeb78 (diff)
downloadrust-60b859ab8ac8c48b7adbefe81d0e5d3c772b080a.tar.gz
rust-60b859ab8ac8c48b7adbefe81d0e5d3c772b080a.zip
Remove all use of librustuv
Diffstat (limited to 'src/libstd/lib.rs')
-rw-r--r--src/libstd/lib.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index 299e41f7219..7304871cf21 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -116,11 +116,6 @@
 
 #![reexport_test_harness_main = "test_main"]
 
-// When testing libstd, bring in libuv as the I/O backend so tests can print
-// things and all of the std::io tests have an I/O interface to run on top
-// of
-#[cfg(test)] extern crate rustuv;
-#[cfg(test)] extern crate native;
 #[cfg(test)] extern crate green;
 #[cfg(test)] extern crate debug;
 #[cfg(test)] #[phase(plugin, link)] extern crate log;
@@ -187,12 +182,6 @@ pub use unicode::char;
 
 pub use core_sync::comm;
 
-// Run tests with libgreen instead of libnative.
-#[cfg(test)] #[start]
-fn start(argc: int, argv: *const *const u8) -> int {
-    green::start(argc, argv, rustuv::event_loop, test_main)
-}
-
 /* Exported macros */
 
 pub mod macros;