llvm/libc/test/src/stdio/sscanf_test.cpp

//===-- Unittests for sscanf ----------------------------------------------===//
//
// 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/stdio/sscanf.h"

#include "hdr/stdio_macros.h" // For EOF
#include "src/__support/CPP/limits.h"
#include "src/__support/FPUtil/FPBits.h"
#include "test/UnitTest/FPMatcher.h"
#include "test/UnitTest/Test.h"

TEST(LlvmLibcSScanfTest, SimpleStringConv) {}

TEST(LlvmLibcSScanfTest, IntConvSimple) {}

TEST(LlvmLibcSScanfTest, IntConvLengthModifier) {}

TEST(LlvmLibcSScanfTest, IntConvBaseSelection) {}

TEST(LlvmLibcSScanfTest, IntConvMaxLengthTests) {}

TEST(LlvmLibcSScanfTest, IntConvNoWriteTests) {}

#ifndef LIBC_COPT_SCANF_DISABLE_FLOAT
TEST(LlvmLibcSScanfTest, FloatConvSimple) {}

TEST(LlvmLibcSScanfTest, FloatConvLengthModifier) {}

TEST(LlvmLibcSScanfTest, FloatConvLongNumber) {}

TEST(LlvmLibcSScanfTest, FloatConvComplexParsing) {}

TEST(LlvmLibcSScanfTest, FloatConvMaxWidth) {}

TEST(LlvmLibcSScanfTest, FloatConvNoWrite) {}
#endif

#ifndef LIBC_COPT_SCANF_DISABLE_INDEX_MODE
TEST(LlvmLibcSScanfTest, CurPosCombined) {}
#endif

TEST(LlvmLibcSScanfTest, PointerConvCombined) {}

TEST(LlvmLibcSScanfTest, CombinedConv) {}