diff options
| author | Cameron Steffen <cam.steffen94@gmail.com> | 2021-09-08 10:59:05 -0500 |
|---|---|---|
| committer | Cameron Steffen <cam.steffen94@gmail.com> | 2021-09-08 14:07:03 -0500 |
| commit | 1074bad06d421feabd6d4c75d0cb110c677d812d (patch) | |
| tree | db8f61f328259f280161578ad4db1587de770383 | |
| parent | ecaf7acd4f9074e255cafaac9aa4b1c601dc311a (diff) | |
| download | rust-1074bad06d421feabd6d4c75d0cb110c677d812d.tar.gz rust-1074bad06d421feabd6d4c75d0cb110c677d812d.zip | |
Rename test_build_base to test
| -rw-r--r-- | clippy_dev/src/bless.rs | 2 | ||||
| -rw-r--r-- | tests/compile-test.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/clippy_dev/src/bless.rs b/clippy_dev/src/bless.rs index 3d97fa8a892..daf0fcc993b 100644 --- a/clippy_dev/src/bless.rs +++ b/clippy_dev/src/bless.rs @@ -86,6 +86,6 @@ fn updated_since_clippy_build(path: &Path) -> Option<bool> { fn build_dir() -> PathBuf { let mut path = std::env::current_exe().unwrap(); - path.set_file_name("test_build_base"); + path.set_file_name("test"); path } diff --git a/tests/compile-test.rs b/tests/compile-test.rs index d113c4d3437..c9d10111595 100644 --- a/tests/compile-test.rs +++ b/tests/compile-test.rs @@ -128,7 +128,7 @@ fn default_config() -> compiletest::Config { extern_flags(), )); - config.build_base = profile_path.join("test_build_base"); + config.build_base = profile_path.join("test"); config.rustc_path = profile_path.join(if cfg!(windows) { "clippy-driver.exe" } else { |
