Skip to content

Commit 19ed213

Browse files
committed
Remove no longer necessary code removing "[codegen mono items]" from test output
1 parent 5e6cde1 commit 19ed213

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

build_system/tests.rs

-7
Original file line numberDiff line numberDiff line change
@@ -171,13 +171,6 @@ const EXTENDED_SYSROOT_SUITE: &[TestCase] = &[
171171
.unwrap();
172172

173173
let output = spawn_and_wait_with_input(run_cmd, input);
174-
// Make sure `[codegen mono items] start` doesn't poison the diff
175-
let output = output
176-
.lines()
177-
.filter(|line| !line.contains("codegen mono items"))
178-
.chain(Some("")) // This just adds the trailing newline
179-
.collect::<Vec<&str>>()
180-
.join("\r\n");
181174

182175
let output_matches = expected.lines().eq(output.lines());
183176
if !output_matches {

0 commit comments

Comments
 (0)