[libc] Fix too long number in strtoul_test

I think this is the last windows type conversion fix, the rest of the
build seems to be okay.

Reviewed By: sivachandra

Differential Revision: https://reviews.llvm.org/D108659
This commit is contained in:
Michael Jones 2021-08-24 19:59:29 +00:00
parent a65b5ddd33
commit fdee2d768d
1 changed files with 3 additions and 3 deletions

View File

@ -45,11 +45,11 @@ TEST(LlvmLibcStrToULTest, CleanBaseTenDecode) {
ASSERT_EQ(errno, 0);
EXPECT_EQ(str_end - negative, ptrdiff_t(4));
const char *big_number = "123456789012345";
const char *big_number = "1234567890";
errno = 0;
ASSERT_EQ(__llvm_libc::strtoul(big_number, &str_end, 10), 123456789012345ul);
ASSERT_EQ(__llvm_libc::strtoul(big_number, &str_end, 10), 1234567890ul);
ASSERT_EQ(errno, 0);
EXPECT_EQ(str_end - big_number, ptrdiff_t(15));
EXPECT_EQ(str_end - big_number, ptrdiff_t(10));
const char *too_big_number = "123456789012345678901";
errno = 0;