Skip to content

Commit 12c5573

Browse files
authored
Unrolled build for rust-lang#124257
Rollup merge of rust-lang#124257 - JoverZhang:rmake-diff, r=jieyouxu Rewrite the `no-input-file.stderr` test in Rust and support diff Rewrite the `no-input-file.stderr` test from rust-lang#121876. Use the `similar` lib to replace the `diff` command.
2 parents 284f94f + f3530cf commit 12c5573

File tree

9 files changed

+146
-5
lines changed

9 files changed

+146
-5
lines changed

Cargo.lock

+7
Original file line numberDiff line numberDiff line change
@@ -3343,6 +3343,7 @@ version = "0.0.0"
33433343
dependencies = [
33443344
"object 0.34.0",
33453345
"regex",
3346+
"similar",
33463347
"wasmparser",
33473348
]
33483349

@@ -5138,6 +5139,12 @@ version = "1.3.0"
51385139
source = "registry+https://github.com/rust-lang/crates.io-index"
51395140
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
51405141

5142+
[[package]]
5143+
name = "similar"
5144+
version = "2.5.0"
5145+
source = "registry+https://github.com/rust-lang/crates.io-index"
5146+
checksum = "fa42c91313f1d05da9b26f267f931cf178d4aba455b4c4622dd7355eb80c6640"
5147+
51415148
[[package]]
51425149
name = "siphasher"
51435150
version = "0.3.11"

src/tools/run-make-support/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ edition = "2021"
55

66
[dependencies]
77
object = "0.34.0"
8+
similar = "2.5.0"
89
wasmparser = "0.118.2"
910
regex = "1.8" # 1.8 to avoid memchr 2.6.0, as 2.5.0 is pinned in the workspace
+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
use similar::TextDiff;
2+
use std::path::Path;
3+
4+
#[cfg(test)]
5+
mod tests;
6+
7+
pub fn diff() -> Diff {
8+
Diff::new()
9+
}
10+
11+
#[derive(Debug)]
12+
pub struct Diff {
13+
expected: Option<String>,
14+
expected_name: Option<String>,
15+
actual: Option<String>,
16+
actual_name: Option<String>,
17+
}
18+
19+
impl Diff {
20+
/// Construct a bare `diff` invocation.
21+
pub fn new() -> Self {
22+
Self { expected: None, expected_name: None, actual: None, actual_name: None }
23+
}
24+
25+
/// Specify the expected output for the diff from a file.
26+
pub fn expected_file<P: AsRef<Path>>(&mut self, path: P) -> &mut Self {
27+
let path = path.as_ref();
28+
let content = std::fs::read_to_string(path).expect("failed to read file");
29+
let name = path.to_string_lossy().to_string();
30+
31+
self.expected = Some(content);
32+
self.expected_name = Some(name);
33+
self
34+
}
35+
36+
/// Specify the expected output for the diff from a given text string.
37+
pub fn expected_text<T: AsRef<[u8]>>(&mut self, name: &str, text: T) -> &mut Self {
38+
self.expected = Some(String::from_utf8_lossy(text.as_ref()).to_string());
39+
self.expected_name = Some(name.to_string());
40+
self
41+
}
42+
43+
/// Specify the actual output for the diff from a file.
44+
pub fn actual_file<P: AsRef<Path>>(&mut self, path: P) -> &mut Self {
45+
let path = path.as_ref();
46+
let content = std::fs::read_to_string(path).expect("failed to read file");
47+
let name = path.to_string_lossy().to_string();
48+
49+
self.actual = Some(content);
50+
self.actual_name = Some(name);
51+
self
52+
}
53+
54+
/// Specify the actual output for the diff from a given text string.
55+
pub fn actual_text<T: AsRef<[u8]>>(&mut self, name: &str, text: T) -> &mut Self {
56+
self.actual = Some(String::from_utf8_lossy(text.as_ref()).to_string());
57+
self.actual_name = Some(name.to_string());
58+
self
59+
}
60+
61+
/// Executes the diff process, prints any differences to the standard error.
62+
#[track_caller]
63+
pub fn run(&self) {
64+
let expected = self.expected.as_ref().expect("expected text not set");
65+
let actual = self.actual.as_ref().expect("actual text not set");
66+
let expected_name = self.expected_name.as_ref().unwrap();
67+
let actual_name = self.actual_name.as_ref().unwrap();
68+
69+
let output = TextDiff::from_lines(expected, actual)
70+
.unified_diff()
71+
.header(expected_name, actual_name)
72+
.to_string();
73+
74+
if !output.is_empty() {
75+
panic!(
76+
"test failed: `{}` is different from `{}`\n\n{}",
77+
expected_name, actual_name, output
78+
)
79+
}
80+
}
81+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
#[cfg(test)]
2+
mod tests {
3+
use crate::*;
4+
5+
#[test]
6+
fn test_diff() {
7+
let expected = "foo\nbar\nbaz\n";
8+
let actual = "foo\nbar\nbaz\n";
9+
diff().expected_text("EXPECTED_TEXT", expected).actual_text("ACTUAL_TEXT", actual).run();
10+
}
11+
12+
#[test]
13+
fn test_should_panic() {
14+
let expected = "foo\nbar\nbaz\n";
15+
let actual = "foo\nbaz\nbar\n";
16+
17+
let output = std::panic::catch_unwind(|| {
18+
diff()
19+
.expected_text("EXPECTED_TEXT", expected)
20+
.actual_text("ACTUAL_TEXT", actual)
21+
.run();
22+
})
23+
.unwrap_err();
24+
25+
let expected_output = "\
26+
test failed: `EXPECTED_TEXT` is different from `ACTUAL_TEXT`
27+
28+
--- EXPECTED_TEXT
29+
+++ ACTUAL_TEXT
30+
@@ -1,3 +1,3 @@
31+
foo
32+
+baz
33+
bar
34+
-baz
35+
";
36+
37+
assert_eq!(output.downcast_ref::<String>().unwrap(), expected_output);
38+
}
39+
}

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

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
66
pub mod cc;
77
pub mod clang;
8+
pub mod diff;
89
pub mod llvm_readobj;
910
pub mod run;
1011
pub mod rustc;
@@ -20,6 +21,7 @@ pub use wasmparser;
2021

2122
pub use cc::{cc, extra_c_flags, extra_cxx_flags, Cc};
2223
pub use clang::{clang, Clang};
24+
pub use diff::{diff, Diff};
2325
pub use llvm_readobj::{llvm_readobj, LlvmReadobj};
2426
pub use run::{run, run_fail};
2527
pub use rustc::{aux_build, rustc, Rustc};

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

+7
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,13 @@ impl Rustc {
148148
self
149149
}
150150

151+
/// Specify the print request.
152+
pub fn print(&mut self, request: &str) -> &mut Self {
153+
self.cmd.arg("--print");
154+
self.cmd.arg(request);
155+
self
156+
}
157+
151158
/// Add an extra argument to the linker invocation, via `-Clink-arg`.
152159
pub fn link_arg(&mut self, link_arg: &str) -> &mut Self {
153160
self.cmd.arg(format!("-Clink-arg={link_arg}"));

src/tools/tidy/src/allowed_run_make_makefiles.txt

-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,6 @@ run-make/no-builtins-attribute/Makefile
189189
run-make/no-builtins-lto/Makefile
190190
run-make/no-cdylib-as-rdylib/Makefile
191191
run-make/no-duplicate-libs/Makefile
192-
run-make/no-input-file/Makefile
193192
run-make/no-intermediate-extras/Makefile
194193
run-make/obey-crate-type-flag/Makefile
195194
run-make/optimization-remarks-dir-pgo/Makefile

tests/run-make/no-input-file/Makefile

-4
This file was deleted.

tests/run-make/no-input-file/rmake.rs

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
extern crate run_make_support;
2+
3+
use run_make_support::{diff, rustc};
4+
5+
fn main() {
6+
let output = rustc().print("crate-name").run_fail_assert_exit_code(1);
7+
8+
diff().expected_file("no-input-file.stderr").actual_text("output", output.stderr).run();
9+
}

0 commit comments

Comments
 (0)