We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 728f397 commit 5fe3b6cCopy full SHA for 5fe3b6c
clippy_dev/src/bless.rs
@@ -42,9 +42,10 @@ pub fn bless(ignore_timestamp: bool) {
42
.for_each(|f| {
43
let test_name = f.path().strip_prefix(test_suite_dir).unwrap();
44
for &ext in &["stdout", "stderr", "fixed"] {
45
+ let test_name_ext = format!("stage-id.{}", ext);
46
update_reference_file(
47
f.path().with_extension(ext),
- test_name.with_extension(ext),
48
+ test_name.with_extension(test_name_ext),
49
ignore_timestamp,
50
);
51
}
0 commit comments