llvm/libc/test/src/__support/str_to_integer_test.cpp

//===-- Unittests for str_to_integer --------------------------------------===//
//
// 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/__support/str_to_integer.h"
#include "src/errno/libc_errno.h"
#include <stddef.h>

#include "test/UnitTest/Test.h"

// This file is for testing the src_len argument and other internal interface
// features. Primary testing is done in stdlib/StrolTest.cpp through the public
// interface.

TEST(LlvmLibcStrToIntegerTest, SimpleLength) {}

TEST(LlvmLibcStrToIntegerTest, LeadingSpaces) {}

TEST(LlvmLibcStrToIntegerTest, LeadingSign) {}

TEST(LlvmLibcStrToIntegerTest, Base16PrefixAutoSelect) {}

TEST(LlvmLibcStrToIntegerTest, Base16PrefixManualSelect) {}

TEST(LlvmLibcStrToIntegerTest, Base8PrefixAutoSelect) {}

TEST(LlvmLibcStrToIntegerTest, Base8PrefixManualSelect) {}

TEST(LlvmLibcStrToIntegerTest, CombinedTests) {}