brintos

brintos / llvm-project-archived public Read only

0
0
Text · 908 B · 33a47b6 Raw
22 lines · cpp
1//===-- Unittests for strcasecmp_l ----------------------------------------===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9#include "hdr/locale_macros.h"10#include "src/locale/freelocale.h"11#include "src/locale/newlocale.h"12#include "src/strings/strcasecmp_l.h"13#include "test/UnitTest/Test.h"14 15TEST(LlvmLibcStrCaseCmpLTest, Case) {16  locale_t locale = LIBC_NAMESPACE::newlocale(LC_ALL, "C", nullptr);17  ASSERT_EQ(LIBC_NAMESPACE::strcasecmp_l("hello", "HELLO", locale), 0);18  ASSERT_LT(LIBC_NAMESPACE::strcasecmp_l("hello1", "hello2", locale), 0);19  ASSERT_GT(LIBC_NAMESPACE::strcasecmp_l("hello2", "hello1", locale), 0);20  LIBC_NAMESPACE::freelocale(locale);21}22