about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorEric Huss <eric@huss.org>2018-12-17 10:23:04 -0800
committerEric Huss <eric@huss.org>2018-12-28 17:23:01 -0800
commit5739364784fa652a62776ef33c576151e61b4d7a (patch)
treeeb0f68e7e1c89594b9d69205d568e12370995543 /src/bootstrap
parentd9e3edb74bb52d3d60d48dc956319c68f7f2805c (diff)
downloadrust-5739364784fa652a62776ef33c576151e61b4d7a.tar.gz
rust-5739364784fa652a62776ef33c576151e61b4d7a.zip
Update cargo, rls, miri
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/test.rs7
-rw-r--r--src/bootstrap/tool.rs2
2 files changed, 1 insertions, 8 deletions
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs
index b6f3f97e627..2edc78ebaa9 100644
--- a/src/bootstrap/test.rs
+++ b/src/bootstrap/test.rs
@@ -283,13 +283,6 @@ impl Step for Rls {
                                                  SourceType::Submodule,
                                                  &[]);
 
-        // Copy `src/tools/rls/test_data` to a writable drive.
-        let test_workspace_path = builder.out.join("rls-test-data");
-        let test_data_path = test_workspace_path.join("test_data");
-        builder.create_dir(&test_data_path);
-        builder.cp_r(&builder.src.join("src/tools/rls/test_data"), &test_data_path);
-        cargo.env("RLS_TEST_WORKSPACE_DIR", test_workspace_path);
-
         builder.add_rustc_lib_path(compiler, &mut cargo);
         cargo.arg("--")
             .args(builder.config.cmd.test_args());
diff --git a/src/bootstrap/tool.rs b/src/bootstrap/tool.rs
index 1a5a8740499..7782351a552 100644
--- a/src/bootstrap/tool.rs
+++ b/src/bootstrap/tool.rs
@@ -140,7 +140,7 @@ impl Step for ToolBuild {
         });
 
         if is_expected && !duplicates.is_empty() {
-            println!("duplicate artfacts found when compiling a tool, this \
+            println!("duplicate artifacts found when compiling a tool, this \
                       typically means that something was recompiled because \
                       a transitive dependency has different features activated \
                       than in a previous build:\n");