mirror of
https://github.com/Zygo/bees.git
synced 2025-05-17 13:25:45 +02:00
27 lines
605 B
C++
27 lines
605 B
C++
#include "tests.h"
|
|
#include "crucible/crc64.h"
|
|
|
|
#include <cassert>
|
|
|
|
using namespace crucible;
|
|
|
|
static
|
|
void
|
|
test_getcrc64_byte_arrays()
|
|
{
|
|
assert(Digest::CRC::crc64("John", 4) == 5942451273432301568);
|
|
assert(Digest::CRC::crc64("Paul", 4) == 5838402100630913024);
|
|
assert(Digest::CRC::crc64("George", 6) == 6714394476893704192);
|
|
assert(Digest::CRC::crc64("Ringo", 5) == 6038837226071130112);
|
|
assert(Digest::CRC::crc64("", 0) == 0);
|
|
assert(Digest::CRC::crc64("\377\277\300\200", 4) == 15615382887346470912ULL);
|
|
}
|
|
|
|
int
|
|
main(int, char**)
|
|
{
|
|
RUN_A_TEST(test_getcrc64_byte_arrays());
|
|
|
|
exit(EXIT_SUCCESS);
|
|
}
|