diff options
Diffstat (limited to 'stdlib/tst-strtoll.c')
-rw-r--r-- | stdlib/tst-strtoll.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/stdlib/tst-strtoll.c b/stdlib/tst-strtoll.c index c60f011c67..1cc72823b6 100644 --- a/stdlib/tst-strtoll.c +++ b/stdlib/tst-strtoll.c @@ -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. */ |