/
GitCaptain
/
llvm-project
Обзор
Документация
Войти
/
GitCaptain
/
llvm-project
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
fix-tests
libc/test/src/errno/errno_test.cpp
16 строк
567 B
Michael Jones
[libc][NFC] add "LlvmLibc" as a prefix to all test names
21 янв 2021, 02:15
21 янв 2021, 02:15
1df0dbf
Код
Авторство
О чём код?
//===-- Unittests for errno -----------------------------------------------===// // // 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 "src/errno/llvmlibc_errno.h" #include "utils/UnitTest/Test.h" TEST(LlvmLibcErrnoTest, Basic) { int test_val = 123; llvmlibc_errno = test_val; ASSERT_EQ(test_val, llvmlibc_errno); }