about summary refs log tree commit diff
path: root/src/compiletest
diff options
context:
space:
mode:
authorHuon Wilson <dbau.pp+github@gmail.com>2013-06-09 02:21:11 +1000
committerHuon Wilson <dbau.pp+github@gmail.com>2013-06-09 02:22:23 +1000
commit98ba91f81bea38d8fc8bd5bc0cb44ac3e173a53c (patch)
treef99d1c8374844ccf7a3368110d3e33c0e51f18bb /src/compiletest
parent00f591680983cc19a6d9f24d8f8c0026ccf20398 (diff)
remove unused import warnings
Diffstat (limited to 'src/compiletest')
-rw-r--r--src/compiletest/procsrv.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/compiletest/procsrv.rs b/src/compiletest/procsrv.rs
index 62f0731dab6..f86ab2c9093 100644
--- a/src/compiletest/procsrv.rs
+++ b/src/compiletest/procsrv.rs
@@ -10,14 +10,9 @@
 
 use core::prelude::*;
 
-use core::comm;
-use core::io;
-use core::libc::c_int;
 use core::os;
 use core::run;
 use core::str;
-use core::task;
-use core::vec;
 
 #[cfg(target_os = "win32")]
 fn target_env(lib_path: &str, prog: &str) -> ~[(~str,~str)] {
@@ -74,4 +69,3 @@ pub fn run(lib_path: &str,
         err: str::from_bytes(output.error)
     }
 }
-