We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb6b637 commit bcfbedeCopy full SHA for bcfbede
cpp/src/arrow/util/io_util_test.cc
@@ -1096,7 +1096,7 @@ TEST(CpuInfo, Basic) {
1096
const auto l2 = ci->CacheSize(CpuInfo::CacheLevel::L2);
1097
const auto l3 = ci->CacheSize(CpuInfo::CacheLevel::L3);
1098
ASSERT_TRUE(l1 >= 4 * 1024 && l1 <= 512 * 1024) << "unexpected L1 size: " << l1;
1099
- ASSERT_TRUE(l2 >= 32 * 1024 && l2 <= 12 * 1024 * 1024) << "unexpected L2 size: " << l2;
+ ASSERT_TRUE(l2 >= 32 * 1024 && l2 <= 64 * 1024 * 1024) << "unexpected L2 size: " << l2;
1100
ASSERT_TRUE(l3 >= 256 * 1024 && l3 <= 1024 * 1024 * 1024)
1101
<< "unexpected L3 size: " << l3;
1102
ASSERT_LE(l1, l2) << "L1 cache size " << l1 << " larger than L2 " << l2;
0 commit comments