diff options
author | aosipenko <aosipenko@yandex-team.ru> | 2022-02-10 16:48:08 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:48:08 +0300 |
commit | 948fd24d47d4b3b7815aaef1686aea00ef3f4288 (patch) | |
tree | 8ad4c39c2a5f8b341bc02e3b0c5e8f26c40373cb /util/memory/pool_ut.cpp | |
parent | d2eb4aae699fa2f6901bf32d22eec019c8f29838 (diff) | |
download | ydb-948fd24d47d4b3b7815aaef1686aea00ef3f4288.tar.gz |
Restoring authorship annotation for <aosipenko@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/memory/pool_ut.cpp')
-rw-r--r-- | util/memory/pool_ut.cpp | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/util/memory/pool_ut.cpp b/util/memory/pool_ut.cpp index 1158a8ca42..3268ed841f 100644 --- a/util/memory/pool_ut.cpp +++ b/util/memory/pool_ut.cpp @@ -80,7 +80,7 @@ class TMemPoolTest: public TTestBase { UNIT_TEST_SUITE(TMemPoolTest); UNIT_TEST(TestMemPool) UNIT_TEST(TestAlign) - UNIT_TEST(TestZeroArray) + UNIT_TEST(TestZeroArray) UNIT_TEST(TestLargeStartingAlign) UNIT_TEST(TestMoveAlloc) UNIT_TEST(TestRoundUpToNextPowerOfTwoOption) @@ -196,22 +196,22 @@ private: UNIT_ASSERT_VALUES_EQUAL(reinterpret_cast<uintptr_t>(aligned256) & 255, 0); UNIT_ASSERT_VALUES_EQUAL(reinterpret_cast<uintptr_t>(aligned1024) & 1023, 0); } - - void TestZeroArray() { - TMemoryPool pool(1); - size_t size = 10; - i32* intArray = pool.AllocateZeroArray<i32>(size); - for (size_t i = 0; i < size; ++i) { - UNIT_ASSERT(intArray[i] == 0); - } - + + void TestZeroArray() { + TMemoryPool pool(1); + size_t size = 10; + i32* intArray = pool.AllocateZeroArray<i32>(size); + for (size_t i = 0; i < size; ++i) { + UNIT_ASSERT(intArray[i] == 0); + } + size_t align = 256; - ui8* byteArray = pool.AllocateZeroArray<ui8>(size, align); - UNIT_ASSERT(size_t(byteArray) % align == 0); - for (size_t i = 0; i < size; ++i) { - UNIT_ASSERT(byteArray[i] == 0); + ui8* byteArray = pool.AllocateZeroArray<ui8>(size, align); + UNIT_ASSERT(size_t(byteArray) % align == 0); + for (size_t i = 0; i < size; ++i) { + UNIT_ASSERT(byteArray[i] == 0); } - } + } void TestLargeStartingAlign() { TMemoryPool pool(1); |