/* * Copyright (C) 2017-2020 The Project X-Ray Authors. * * Use of this source code is governed by a ISC-style * license that can be found in the LICENSE file or at * https://opensource.org/licenses/ISC * * SPDX-License-Identifier: ISC */ #include #include using namespace prjxray::xilinx; TEST(IcapCrcTest, SimpleTests) { // CRC for Zero Data EXPECT_EQ(xc7series::icap_crc(0, 0, 0), 0x0L); // Polynomial (single bit operation) EXPECT_EQ(xc7series::icap_crc(1 << 4, 0, 0), 0x82F63B78); // All Reg/Data bits EXPECT_EQ(xc7series::icap_crc(~0, ~0, 0), 0xBF86D4DF); // All CRC bits EXPECT_EQ(xc7series::icap_crc(0, 0, ~0), 0xC631E365); }