1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00

* stdlib/tst-strtol.c: Add test for 0xFFFFFFFFFFFF00FF (from PR

libc/1864). 
* stdlib/tst-strtoll.c: Likewise.
This commit is contained in:
Andreas Jaeger
2000-08-22 05:57:04 +00:00
parent bf025fc19f
commit b28ea43a7d
2 changed files with 3 additions and 1 deletions

View File

@@ -68,6 +68,7 @@ static const struct ltest tests[] =
{"-9223372036854775808", -9223372036854775807ll - 1, 0, 0, 0},
{"-9223372036854775809", -9223372036854775807ll - 1, 0, 0, ERANGE},
{"0x112233445566778899z", 9223372036854775807ll, 16, 'z', ERANGE},
{"0xFFFFFFFFFFFF00FF" , 9223372036854775807ll, 0, 0, ERANGE},
{NULL, 0, 0, 0, 0},
/* Then unsigned. */