summaryrefslogtreecommitdiffstats
path: root/src/bootstrap/setup/tests.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-07 05:48:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-07 05:48:48 +0000
commitef24de24a82fe681581cc130f342363c47c0969a (patch)
tree0d494f7e1a38b95c92426f58fe6eaa877303a86c /src/bootstrap/setup/tests.rs
parentReleasing progress-linux version 1.74.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-ef24de24a82fe681581cc130f342363c47c0969a.tar.xz
rustc-ef24de24a82fe681581cc130f342363c47c0969a.zip
Merging upstream version 1.75.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/bootstrap/setup/tests.rs')
-rw-r--r--src/bootstrap/setup/tests.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/bootstrap/setup/tests.rs b/src/bootstrap/setup/tests.rs
deleted file mode 100644
index 0fe6e4a46..000000000
--- a/src/bootstrap/setup/tests.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-use super::{RUST_ANALYZER_SETTINGS, SETTINGS_HASHES};
-use sha2::Digest;
-
-#[test]
-fn check_matching_settings_hash() {
- let mut hasher = sha2::Sha256::new();
- hasher.update(&RUST_ANALYZER_SETTINGS);
- let hash = hex::encode(hasher.finalize().as_slice());
- assert_eq!(
- &hash,
- SETTINGS_HASHES.last().unwrap(),
- "Update `SETTINGS_HASHES` with the new hash of `src/etc/rust_analyzer_settings.json`"
- );
-}