#include "src/__support/FPUtil/FPBits.h"
#include "src/__support/uint128.h"
#include "src/errno/libc_errno.h"
#include "src/stdlib/strtold.h"
#include "test/UnitTest/Test.h"
#include <stddef.h>
#if defined(LIBC_TYPES_LONG_DOUBLE_IS_FLOAT64)
#define SELECT_CONST …
#elif defined(LIBC_TYPES_LONG_DOUBLE_IS_X86_FLOAT80)
#define SELECT_CONST(_, val, __) …
#elif defined(LIBC_TYPES_LONG_DOUBLE_IS_FLOAT128)
#define SELECT_CONST …
#else
#error "Unknown long double type"
#endif
class LlvmLibcStrToLDTest : public LIBC_NAMESPACE::testing::Test { … };
TEST_F(LlvmLibcStrToLDTest, SimpleTest) { … }
TEST_F(LlvmLibcStrToLDTest, Float64SpecificFailures) { … }
TEST_F(LlvmLibcStrToLDTest, Float80SpecificFailures) { … }
TEST_F(LlvmLibcStrToLDTest, MaxSizeNumbers) { … }
TEST_F(LlvmLibcStrToLDTest, SubnormalTests) { … }
TEST_F(LlvmLibcStrToLDTest, SmallNormalTests) { … }
TEST_F(LlvmLibcStrToLDTest, ComplexHexadecimalTests) { … }
TEST_F(LlvmLibcStrToLDTest, InfTests) { … }
TEST_F(LlvmLibcStrToLDTest, NaNTests) { … }