File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -93,11 +93,11 @@ TEST(ReclaimTest, ReclaimWorks) {
9393 // Allocate strings, so that they don't need to be reallocated below, and so
9494 // don't perturb what we're trying to measure.
9595 //
96- // As of December 2024 , this size, plus the null terminator on the
96+ // As of November 2025 , this size, plus the null terminator on the
9797 // std::string, is well outside of the size classes used by TCMalloc, so a
9898 // resize will not perturb the per-CPU cache.
99- before.reserve (1 << 20 );
100- after.reserve (1 << 20 );
99+ before.reserve (1 << 21 );
100+ after.reserve (1 << 21 );
101101
102102 // Generate some traffic to fill up caches.
103103 const int kThreads = 10 ;
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ int VirtualCpu::TestSynchronize() { return ScopedFakeCpuId::test_vcpu_; }
8383
8484std::string GetStatsInPbTxt () {
8585 // When huge page telemetry is enabled, the output can become very large.
86- const int buffer_length = 3 << 20 ;
86+ const int buffer_length = 3 << 21 ;
8787 std::string buf;
8888 if (&MallocExtension_Internal_GetStatsInPbtxt == nullptr ) {
8989 return buf;
You can’t perform that action at this time.
0 commit comments