Skip to content

Commit d2a7159

Browse files
authored
Unrolled build for rust-lang#127237
Rollup merge of rust-lang#127237 - GuillaumeGomez:improve-run-make-llvm-ident, r=Kobzol Improve code of `run-make/llvm-ident` Follow-up of rust-lang#126941. r? `@Kobzol`
2 parents 32e6926 + aa1c24a commit d2a7159

File tree

1 file changed

+8
-14
lines changed

1 file changed

+8
-14
lines changed

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

+8-14
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
//@ ignore-cross-compile
33

44
use run_make_support::llvm::llvm_bin_dir;
5-
use run_make_support::{cmd, env_var, llvm_filecheck, read_dir, rustc, source_root};
6-
7-
use std::ffi::OsStr;
5+
use run_make_support::{
6+
cmd, env_var, has_extension, llvm_filecheck, rustc, shallow_find_files, source_root,
7+
};
88

99
fn main() {
1010
// `-Ccodegen-units=16 -Copt-level=2` is used here to trigger thin LTO
@@ -22,20 +22,14 @@ fn main() {
2222

2323
// `llvm-dis` is used here since `--emit=llvm-ir` does not emit LLVM IR
2424
// for temporary outputs.
25-
let mut files = Vec::new();
26-
read_dir(".", |path| {
27-
if path.is_file() && path.extension().is_some_and(|ext| ext == OsStr::new("bc")) {
28-
files.push(path.to_path_buf());
29-
}
30-
});
25+
let files = shallow_find_files(".", |path| has_extension(path, "bc"));
3126
cmd(llvm_bin_dir().join("llvm-dis")).args(files).run();
3227

3328
// Check LLVM IR files (including temporary outputs) have `!llvm.ident`
3429
// named metadata, reusing the related codegen test.
3530
let llvm_ident_path = source_root().join("tests/codegen/llvm-ident.rs");
36-
read_dir(".", |path| {
37-
if path.is_file() && path.extension().is_some_and(|ext| ext == OsStr::new("ll")) {
38-
llvm_filecheck().input_file(path).arg(&llvm_ident_path).run();
39-
}
40-
});
31+
let files = shallow_find_files(".", |path| has_extension(path, "ll"));
32+
for file in files {
33+
llvm_filecheck().input_file(file).arg(&llvm_ident_path).run();
34+
}
4135
}

0 commit comments

Comments
 (0)