Re: [PATCH v2] lib/crc16_kunit.c: add KUnit tests for crc16

2024-10-04 Thread Vinicius Peixoto
-crc16/20241004-050248 base: 9852d85ec9d492ebef56dc5f229416c925758edc patch link: https://lore.kernel.org/r/20241003-crc16-kunit-v2-1-5fe74b113e1e%40lkcamp.dev patch subject: [PATCH v2] lib/crc16_kunit.c: add KUnit tests for crc16 config: parisc-randconfig-r071-20241005 (https://download.01

Re: [PATCH v2] lib/crc16_kunit.c: add KUnit tests for crc16

2024-10-04 Thread kernel test robot
: 9852d85ec9d492ebef56dc5f229416c925758edc patch link: https://lore.kernel.org/r/20241003-crc16-kunit-v2-1-5fe74b113e1e%40lkcamp.dev patch subject: [PATCH v2] lib/crc16_kunit.c: add KUnit tests for crc16 config: parisc-randconfig-r071-20241005 (https://download.01.org/0day-ci/archive/20241005/202410050215

[PATCH v2] lib/crc16_kunit.c: add KUnit tests for crc16

2024-10-03 Thread Vinicius Peixoto
Add Kunit tests for the kernel's implementation of the standard CRC-16 algorithm (). The test data consists of 100 randomly-generated test cases, validated against a naive CRC-16 implementation. This test follows roughly the same logic as lib/crc32test.c, but without the performance measurements.