Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RUSTC_BLESS=1 cargo test modifies source files instead of targets #6056

Closed
Nemo157 opened this issue Feb 5, 2024 · 5 comments · Fixed by #6067
Closed

RUSTC_BLESS=1 cargo test modifies source files instead of targets #6056

Nemo157 opened this issue Feb 5, 2024 · 5 comments · Fixed by #6067

Comments

@Nemo157
Copy link
Member

Nemo157 commented Feb 5, 2024

Reproduction:

# make a target file wrong
> echo > tests/target/5131_module.rs

# run tests with blessing enabled
> RUSTC_BLESS=1 cargo test

# check what it changed
> git diff
diff --git tests/source/5131_module.rs tests/source/5131_module.rs
index 3e913917..763024d6 100644
--- tests/source/5131_module.rs
+++ tests/source/5131_module.rs
@@ -9,8 +9,7 @@ mod a {
         }
     }
 
-    use crate::a::b::Data;
-    use crate::a::b::Data as Data2;
+    use crate::a::b::{Data, Data as Data2};
 
     pub fn data(a: i32) -> Data {
         Data { a }
diff --git tests/target/5131_module.rs tests/target/5131_module.rs
index 763024d6..8b137891 100644
--- tests/target/5131_module.rs
+++ tests/target/5131_module.rs
@@ -1,32 +1 @@
-// rustfmt-imports_granularity: Module
 
-#![allow(dead_code)]
-
-mod a {
-    pub mod b {
-        pub struct Data {
-            pub a: i32,
-        }
-    }
-
-    use crate::a::b::{Data, Data as Data2};
-
-    pub fn data(a: i32) -> Data {
-        Data { a }
-    }
-
-    pub fn data2(a: i32) -> Data2 {
-        Data2 { a }
-    }
-
-    #[cfg(test)]
-    mod tests {
-        use super::*;
-
-        #[test]
-        pub fn test() {
-            data(1);
-            data2(1);
-        }
-    }
-}

My expectation is that this should be writing to target, but it was originally implemented for ./x support in the main tree, so I'm not sure if that expects it to modify source files instead for some reason.

std::fs::write(file_name, fmt_text).unwrap();

@Nemo157
Copy link
Member Author

Nemo157 commented Feb 5, 2024

(cc @oli-obk in case you remember context from implementing it in rust-lang/rust#114054)

@oli-obk
Copy link
Contributor

oli-obk commented Feb 5, 2024

It was necessary to modify the source because the logic was used to dogfood rustfmt iirc.

@Nemo157
Copy link
Member Author

Nemo157 commented Feb 5, 2024

Ah, in a self-test/idempotent-test you want to write to the source. But also from what I can see in those cases the target is the source too.

@oli-obk
Copy link
Contributor

oli-obk commented Feb 5, 2024

Ah yea, in that case, we should only write to the target

@ytmimi
Copy link
Contributor

ytmimi commented Feb 6, 2024

I'd also expect this to write to the target file.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants