We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86c1ef6 commit 2937ea5Copy full SHA for 2937ea5
tests/compile-test.rs
@@ -95,7 +95,20 @@ fn run_internal_tests() {
95
}
96
97
fn run_ui_toml() {
98
- let config = base_config("ui-toml");
+ let mut config = base_config("ui-toml");
99
+
100
+ config.stderr_filter(
101
+ &std::path::Path::new(file!())
102
+ .parent()
103
+ .unwrap()
104
+ .canonicalize()
105
106
107
108
+ .display()
109
+ .to_string(),
110
+ "$$DIR",
111
+ );
112
113
ui_test::run_tests(config).unwrap();
114
0 commit comments