]> git.lizzy.rs Git - rust.git/blobdiff - src/tools/compiletest/src/runtest.rs
Rollup merge of #83705 - jyn514:theme-error, r=GuillaumeGomez
[rust.git] / src / tools / compiletest / src / runtest.rs
index a2a53c16b78760ad82ec8109317e96b11c8ab3d3..c2684bb4af3f6265f152a0c1ac664157927ca22c 100644 (file)
@@ -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");