Skip to content

Commit 61eb29e

Browse files
authored
Rollup merge of #126211 - lolbinarycat:llvm-outputs-rmake, r=jieyouxu
migrate tests/run-make/llvm-outputs to use rmake.rs part of #121876 <!-- If this PR is related to an unstable feature or an otherwise tracked effort, please link to the relevant tracking issue here. If you don't know of a related tracking issue or there are none, feel free to ignore this. This PR will get automatically assigned to a reviewer. In case you would like a specific user to review your work, you can assign it to them by using r​? <reviewer name> -->
2 parents 146f4b3 + 91f5530 commit 61eb29e

File tree

4 files changed

+27
-6
lines changed

4 files changed

+27
-6
lines changed

src/tools/run-make-support/src/rustc.rs

+7
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,13 @@ impl Rustc {
107107
self
108108
}
109109

110+
/// Specify path to the output directory. Equivalent to `--out-dir`` in rustc.
111+
pub fn out_dir<P: AsRef<Path>>(&mut self, path: P) -> &mut Self {
112+
self.cmd.arg("--out-dir");
113+
self.cmd.arg(path.as_ref());
114+
self
115+
}
116+
110117
/// This flag defers LTO optimizations to the linker.
111118
pub fn linker_plugin_lto(&mut self, option: &str) -> &mut Self {
112119
self.cmd.arg(format!("-Clinker-plugin-lto={option}"));

src/tools/tidy/src/allowed_run_make_makefiles.txt

-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ run-make/link-framework/Makefile
122122
run-make/link-path-order/Makefile
123123
run-make/linkage-attr-on-static/Makefile
124124
run-make/llvm-ident/Makefile
125-
run-make/llvm-outputs/Makefile
126125
run-make/long-linker-command-lines-cmd-exe/Makefile
127126
run-make/long-linker-command-lines/Makefile
128127
run-make/longjmp-across-rust/Makefile

tests/run-make/llvm-outputs/Makefile

-5
This file was deleted.

tests/run-make/llvm-outputs/rmake.rs

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// test that directories get created when emitting llvm bitcode and IR
2+
3+
use run_make_support::{cwd, run_in_tmpdir, rustc};
4+
use std::path::PathBuf;
5+
6+
fn main() {
7+
let mut path_bc = PathBuf::new();
8+
let mut path_ir = PathBuf::new();
9+
run_in_tmpdir(|| {
10+
let p = cwd();
11+
path_bc = p.join("nonexistant_dir_bc");
12+
path_ir = p.join("nonexistant_dir_ir");
13+
rustc().input("-").stdin("fn main() {}").out_dir(&path_bc).emit("llvm-bc").run();
14+
rustc().input("-").stdin("fn main() {}").out_dir(&path_ir).emit("llvm-ir").run();
15+
assert!(path_bc.exists());
16+
assert!(path_ir.exists());
17+
});
18+
assert!(!path_bc.exists());
19+
assert!(!path_ir.exists());
20+
}

0 commit comments

Comments
 (0)