[libc-commits] [PATCH] D108659: [libc] Fix too long number in strtoul_test
Michael Jones via Phabricator via libc-commits
libc-commits at lists.llvm.org
Tue Aug 24 13:17:28 PDT 2021
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGfdee2d768d5f: [libc] Fix too long number in strtoul_test (authored by michaelrj).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D108659/new/
https://reviews.llvm.org/D108659
Files:
libc/test/src/stdlib/strtoul_test.cpp
Index: libc/test/src/stdlib/strtoul_test.cpp
===================================================================
--- libc/test/src/stdlib/strtoul_test.cpp
+++ libc/test/src/stdlib/strtoul_test.cpp
@@ -45,11 +45,11 @@
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;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D108659.368442.patch
Type: text/x-patch
Size: 750 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20210824/3aa22b32/attachment.bin>
More information about the libc-commits
mailing list