From: Andreas Jaeger Date: Tue, 22 Aug 2000 05:57:04 +0000 (+0000) Subject: * stdlib/tst-strtol.c: Add test for 0xFFFFFFFFFFFF00FF (from PR X-Git-Tag: cvs/glibc-2_1_93~142 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b28ea43a7da3658b71200a1ab2ce5100cc553685;p=thirdparty%2Fglibc.git * stdlib/tst-strtol.c: Add test for 0xFFFFFFFFFFFF00FF (from PR libc/1864). * stdlib/tst-strtoll.c: Likewise. --- diff --git a/stdlib/tst-strtol.c b/stdlib/tst-strtol.c index 2d5d9609860..d4ab95e1db7 100644 --- a/stdlib/tst-strtol.c +++ b/stdlib/tst-strtol.c @@ -54,7 +54,7 @@ static const struct ltest tests[] = {"yz!", 34 * 36 + 35, 36, '!', 0}, {"-yz", -(34*36 + 35), 36, 0, 0}, {"GhI4", ((16*20 + 17)*20 + 18)*20 + 4, 20, 0, 0}, - + /* extremes... */ #if LONG_MAX == 0x7fffffff {"2147483647", 2147483647, 0, 0, 0}, @@ -73,6 +73,7 @@ static const struct ltest tests[] = {"-9223372036854775808", -9223372036854775808, 0, 0, 0}, {"-9223372036854775809", -9223372036854775808, 0, 0, ERANGE}, {"0x112233445566778899z", 9223372036854775807, 16, 'z', ERANGE}, + {"0xFFFFFFFFFFFF00FF" , 9223372036854775807, 0, 0, ERANGE}, #endif {NULL, 0, 0, 0, 0}, diff --git a/stdlib/tst-strtoll.c b/stdlib/tst-strtoll.c index c60f011c67d..1cc72823b65 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. */