test_crc32Fast.cpp 277 B

123456789101112
  1. #include "test/framework/catch.hpp"
  2. #include <string.h>
  3. #undef SHELLMATTA_TRANSPORT_CRC_NO_LOOKUP
  4. #include "src/shellmatta_crc.c"
  5. TEST_CASE( "shellmatta_crc crc32Fast" ) {
  6. uint32_t crc = crc32Fast((char*)"123456789", 9, crc32Table);
  7. REQUIRE( crc == 0xCBF43926u);
  8. }