Files
llvm/libc/test/include/netinet_in_test.cpp
Connector Switch 62ee2cf0f4 [libc] Add IN6_IS_ADDR_{LINK, SITE}LOCAL (#168207)
This patch introduces two macros in `netinet/in.h`. The redundant tests
for macro values in the testcases have been removed.
2025-12-13 10:57:38 +08:00

29 lines
847 B
C++

//===-- Unittests for netinet/in macro ------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "include/llvm-libc-macros/netinet-in-macros.h"
#include "test/UnitTest/Test.h"
TEST(LlvmLibcNetinetInTest, IN6Macro) {
char buff[16] = {};
buff[0] = 0xfe;
buff[1] = 0x80;
EXPECT_TRUE(IN6_IS_ADDR_LINKLOCAL(buff));
buff[0] = 0xff;
buff[1] = 0x80;
EXPECT_FALSE(IN6_IS_ADDR_LINKLOCAL(buff));
buff[0] = 0xfe;
buff[1] = 0xc0;
EXPECT_TRUE(IN6_IS_ADDR_SITELOCAL(buff));
buff[0] = 0xff;
buff[1] = 0x80;
EXPECT_FALSE(IN6_IS_ADDR_SITELOCAL(buff));
}