X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Ftools%2Fcompiletest%2Fsrc%2Fruntest.rs;h=c2684bb4af3f6265f152a0c1ac664157927ca22c;hb=a766d63b2db1d6d24aa447244a8f997e7e619f99;hp=a2a53c16b78760ad82ec8109317e96b11c8ab3d3;hpb=335a3c4b7f5b64f7c0e3c86db8fa7989fb6a4771;p=rust.git diff --git a/src/tools/compiletest/src/runtest.rs b/src/tools/compiletest/src/runtest.rs index a2a53c16b78..c2684bb4af3 100644 --- a/src/tools/compiletest/src/runtest.rs +++ b/src/tools/compiletest/src/runtest.rs @@ -1909,8 +1909,7 @@ fn make_compile_args( } else { Command::new(&self.config.rustdoc_path.clone().expect("no rustdoc built yet")) }; - // FIXME Why is -L here? - rustc.arg(input_file); //.arg("-L").arg(&self.config.build_base); + rustc.arg(input_file); // Use a single thread for efficiency and a deterministic error message order rustc.arg("-Zthreads=1");