view src/lib/test-crc32.c @ 10639:dcfcedb32ea2 HEAD

crc32*() didn't return a standard CRC32 value.
author Timo Sirainen <tss@iki.fi>
date Sat, 06 Feb 2010 00:36:11 +0200
parents
children 447bce266022
line wrap: on
line source

/* Copyright (c) 2010 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();
}