We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecaf7ac commit 1074badCopy full SHA for 1074bad
clippy_dev/src/bless.rs
@@ -86,6 +86,6 @@ fn updated_since_clippy_build(path: &Path) -> Option<bool> {
86
87
fn build_dir() -> PathBuf {
88
let mut path = std::env::current_exe().unwrap();
89
- path.set_file_name("test_build_base");
+ path.set_file_name("test");
90
path
91
}
tests/compile-test.rs
@@ -128,7 +128,7 @@ fn default_config() -> compiletest::Config {
128
extern_flags(),
129
));
130
131
- config.build_base = profile_path.join("test_build_base");
+ config.build_base = profile_path.join("test");
132
config.rustc_path = profile_path.join(if cfg!(windows) {
133
"clippy-driver.exe"
134
} else {
0 commit comments