blob: 3292d1c00339c45d9537f226d3706d611e1c4838 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* Copyright (c) 2010-2018 Dovecot authors, see the included COPYING file */
#include "test-lib.h"
#include "crc32.h"
void test_crc32(void)
{
const char str[] = "foo\0bar";
test_begin("crc32");
test_assert(crc32_str(str) == 0x8c736521);
test_assert(crc32_data(str, sizeof(str)) == 0x32c9723d);
test_end();
}
|