about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-08-27 15:50:50 -0700
committerbors <bors@rust-lang.org>2013-08-27 15:50:50 -0700
commitd5c144a4cd1713e14b0fccd6146648bf968522d9 (patch)
tree9cc970e5623795cf42d3419f5e8cd6273f120eeb
parent7f32ea8820727f4f4944423133e6b32e2653a1d2 (diff)
parentb29696a08ac365054611327e863d0e005d23ca03 (diff)
downloadrust-d5c144a4cd1713e14b0fccd6146648bf968522d9.tar.gz
rust-d5c144a4cd1713e14b0fccd6146648bf968522d9.zip
auto merge of #8792 : adridu59/rust/master, r=catamorphism
`target_library_in_workspace` is imported but unused:
~/rust/src/librustpkg/tests.rs:21:48: 21:75 warning: unused import [-W unused-imports (default)]
-rw-r--r--src/librustpkg/tests.rs9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/librustpkg/tests.rs b/src/librustpkg/tests.rs
index fc40c2cd5f7..3b73d9d11df 100644
--- a/src/librustpkg/tests.rs
+++ b/src/librustpkg/tests.rs
@@ -18,12 +18,11 @@ use std::run::ProcessOutput;
 use installed_packages::list_installed_packages;
 use package_id::{PkgId};
 use version::{ExactRevision, NoVersion, Version, Tagged};
-use path_util::{target_executable_in_workspace, target_library_in_workspace,
-               target_test_in_workspace, target_bench_in_workspace,
-               make_dir_rwx, U_RWX, library_in_workspace,
+use path_util::{target_executable_in_workspace, target_test_in_workspace,
+               target_bench_in_workspace, make_dir_rwx, U_RWX,
+               library_in_workspace, installed_library_in_workspace,
                built_bench_in_workspace, built_test_in_workspace,
-               built_library_in_workspace, built_executable_in_workspace,
-                installed_library_in_workspace};
+               built_library_in_workspace, built_executable_in_workspace};
 use rustc::metadata::filesearch::rust_path;
 use rustc::driver::driver::host_triple;
 use target::*;