diff options
author | sobols <sobols@yandex-team.ru> | 2022-02-10 16:47:08 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:08 +0300 |
commit | 03335cb18337a0ef51966452a66a69b01abea218 (patch) | |
tree | b83306b6e37edeea782e9eed673d89286c4fef35 /library/cpp/digest | |
parent | 09961b69c61f471ddd594e0fd877df62a8021562 (diff) | |
download | ydb-03335cb18337a0ef51966452a66a69b01abea218.tar.gz |
Restoring authorship annotation for <sobols@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/digest')
-rw-r--r-- | library/cpp/digest/crc32c/crc32c_ut.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/library/cpp/digest/crc32c/crc32c_ut.cpp b/library/cpp/digest/crc32c/crc32c_ut.cpp index 02d4c12fec..aa31b83422 100644 --- a/library/cpp/digest/crc32c/crc32c_ut.cpp +++ b/library/cpp/digest/crc32c/crc32c_ut.cpp @@ -8,15 +8,15 @@ Y_UNIT_TEST_SUITE(TestCrc32c) { } Y_UNIT_TEST(TestUnaligned) { - const TString str(1000, 'a'); - for (size_t substrLen = 0; substrLen <= str.length(); ++substrLen) { - const ui32 crc = Crc32c(str.data(), substrLen); - for (size_t offset = 1; offset + substrLen <= str.length(); ++offset) { - UNIT_ASSERT_VALUES_EQUAL(Crc32c(str.data() + offset, substrLen), crc); - } - } - } - + const TString str(1000, 'a'); + for (size_t substrLen = 0; substrLen <= str.length(); ++substrLen) { + const ui32 crc = Crc32c(str.data(), substrLen); + for (size_t offset = 1; offset + substrLen <= str.length(); ++offset) { + UNIT_ASSERT_VALUES_EQUAL(Crc32c(str.data() + offset, substrLen), crc); + } + } + } + Y_UNIT_TEST(TestExtend) { UNIT_ASSERT_VALUES_EQUAL(Crc32cExtend(1, "abc", 3), ui32(2466950601)); } |