2016-01-16 21:03:03 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de>
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
|
|
|
*/
|
|
|
|
|
2016-02-13 17:34:59 +01:00
|
|
|
#include "tests-checksum.h"
|
2016-01-16 21:03:03 +01:00
|
|
|
|
2016-02-13 17:34:59 +01:00
|
|
|
void tests_checksum(void)
|
2016-01-16 21:03:03 +01:00
|
|
|
{
|
2016-02-13 17:34:59 +01:00
|
|
|
TESTS_RUN(tests_checksum_crc16_ccitt_tests());
|
2016-02-13 09:52:53 +01:00
|
|
|
TESTS_RUN(tests_checksum_fletcher16_tests());
|
|
|
|
TESTS_RUN(tests_checksum_fletcher32_tests());
|
2016-01-16 21:03:03 +01:00
|
|
|
}
|