123456789101112 |
- #include "test/framework/catch.hpp"
- #include <string.h>
- #undef SHELLMATTA_TRANSPORT_CRC_NO_LOOKUP
- #include "src/shellmatta_crc.c"
- TEST_CASE( "shellmatta_crc crc32Fast" ) {
- uint32_t crc = crc32Fast((char*)"123456789", 9, crc32Table);
- REQUIRE( crc == 0xCBF43926u);
- }
|