diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2023-02-26 14:28:22 +0000 |
|---|---|---|
| committer | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2023-02-26 14:34:36 +0000 |
| commit | 19ed2139a3250f974312becfd0fe3ef609cf68bf (patch) | |
| tree | b8467da5e600d3997f8c79df99b43ff325fdfdc8 | |
| parent | 5e6cde150e4b09d97a204f697e65e9d53e0af96a (diff) | |
| download | rust-19ed2139a3250f974312becfd0fe3ef609cf68bf.tar.gz rust-19ed2139a3250f974312becfd0fe3ef609cf68bf.zip | |
Remove no longer necessary code removing "[codegen mono items]" from test output
| -rw-r--r-- | build_system/tests.rs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/build_system/tests.rs b/build_system/tests.rs index 3738b5319b0..ff958dcdc69 100644 --- a/build_system/tests.rs +++ b/build_system/tests.rs @@ -171,13 +171,6 @@ const EXTENDED_SYSROOT_SUITE: &[TestCase] = &[ .unwrap(); let output = spawn_and_wait_with_input(run_cmd, input); - // Make sure `[codegen mono items] start` doesn't poison the diff - let output = output - .lines() - .filter(|line| !line.contains("codegen mono items")) - .chain(Some("")) // This just adds the trailing newline - .collect::<Vec<&str>>() - .join("\r\n"); let output_matches = expected.lines().eq(output.lines()); if !output_matches { |
