about summary refs log tree commit diff
path: root/compiler/rustc_data_structures/src/vec_cache
diff options
context:
space:
mode:
authorYuki Okushi <huyuumi.dev@gmail.com>2025-02-10 20:28:39 +0900
committerGitHub <noreply@github.com>2025-02-10 20:28:39 +0900
commit67ba6a6acfd886f1c175e0f5a64a3d2228ac143f (patch)
tree2d6f32e88ad42b1ced7529c15488473bfe8b2abd /compiler/rustc_data_structures/src/vec_cache
parentcf15b33e3b8c6a2b1e629af9ae253bf7e4b18799 (diff)
parent81f21f0cce8be1e4dd1c8f4b9c6d0434029a13be (diff)
downloadrust-67ba6a6acfd886f1c175e0f5a64a3d2228ac143f.tar.gz
rust-67ba6a6acfd886f1c175e0f5a64a3d2228ac143f.zip
Merge pull request #2244 from rust-lang/rustc-pull
Rustc pull update
Diffstat (limited to 'compiler/rustc_data_structures/src/vec_cache')
-rw-r--r--compiler/rustc_data_structures/src/vec_cache/tests.rs13
1 files changed, 8 insertions, 5 deletions
diff --git a/compiler/rustc_data_structures/src/vec_cache/tests.rs b/compiler/rustc_data_structures/src/vec_cache/tests.rs
index a05f2741362..3b65c14162e 100644
--- a/compiler/rustc_data_structures/src/vec_cache/tests.rs
+++ b/compiler/rustc_data_structures/src/vec_cache/tests.rs
@@ -58,11 +58,14 @@ fn concurrent_stress_check() {
 
 #[test]
 fn slot_entries_table() {
-    assert_eq!(ENTRIES_BY_BUCKET, [
-        4096, 4096, 8192, 16384, 32768, 65536, 131072, 262144, 524288, 1048576, 2097152, 4194304,
-        8388608, 16777216, 33554432, 67108864, 134217728, 268435456, 536870912, 1073741824,
-        2147483648
-    ]);
+    assert_eq!(
+        ENTRIES_BY_BUCKET,
+        [
+            4096, 4096, 8192, 16384, 32768, 65536, 131072, 262144, 524288, 1048576, 2097152,
+            4194304, 8388608, 16777216, 33554432, 67108864, 134217728, 268435456, 536870912,
+            1073741824, 2147483648
+        ]
+    );
 }
 
 #[test]