You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.7 KiB
69 lines
1.7 KiB
// SPDX-License-Identifier: GPL-2.0-only
|
|
/**
|
|
* Digital Voice Modem - Test Suite
|
|
* GPLv2 Open Source. Use is subject to license terms.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* @package DVM / Test Suite
|
|
* @license GPLv2 License (https://opensource.org/licenses/GPL-2.0)
|
|
*
|
|
* Copyright (C) 2023 Bryan Biedenkapp, N2PLL
|
|
*
|
|
*/
|
|
#include "host/Defines.h"
|
|
#include "common/edac/CRC.h"
|
|
#include "common/Log.h"
|
|
#include "common/Utils.h"
|
|
|
|
using namespace edac;
|
|
|
|
#include <catch2/catch_test_macros.hpp>
|
|
#include <stdlib.h>
|
|
#include <time.h>
|
|
|
|
TEST_CASE("CRC", "[16-bit Test]") {
|
|
SECTION("16_Sanity_Test") {
|
|
bool failed = false;
|
|
|
|
INFO("CRC 16-bit CRC Test");
|
|
|
|
srand((unsigned int)time(NULL));
|
|
|
|
const uint32_t len = 32U;
|
|
const uint32_t lenBits = len * 8U;
|
|
uint8_t* random = (uint8_t*)malloc(len);
|
|
|
|
for (size_t i = 0; i < len - 2U; i++) {
|
|
random[i] = rand();
|
|
}
|
|
|
|
CRC::addCRC16(random, lenBits);
|
|
|
|
uint16_t inCrc = (random[len - 2U] << 8) | (random[len - 1U] << 0);
|
|
::LogDebug("T", "CRC::checkCRC16(), crc = $%04X", inCrc);
|
|
|
|
Utils::dump(2U, "16_Sanity_Test CRC", random, len);
|
|
|
|
bool ret = CRC::checkCRC16(random, lenBits);
|
|
if (!ret) {
|
|
::LogDebug("T", "16_Sanity_Test, failed CRC16 check");
|
|
failed = true;
|
|
goto cleanup;
|
|
}
|
|
|
|
random[10U] >>= 8;
|
|
random[11U] >>= 8;
|
|
|
|
ret = CRC::checkCRC16(random, lenBits);
|
|
if (ret) {
|
|
::LogDebug("T", "16_Sanity_Test, failed CRC16 error check");
|
|
failed = true;
|
|
goto cleanup;
|
|
}
|
|
|
|
cleanup:
|
|
delete random;
|
|
REQUIRE(failed==false);
|
|
}
|
|
}
|