Fix typos: use correct string format and value to compare.

Sponsored by:	DARPA, AFRL
Sponsored by:	HEIF5
Differential Revision:	https://reviews.freebsd.org/D8226
This commit is contained in:
Ruslan Bukin 2016-10-13 15:26:51 +00:00
parent 2302bd3539
commit c3fa65b1c8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=307220

View File

@ -124,10 +124,10 @@ ATF_TC_BODY(int_within_limits, tc)
testfmt(S_ULONGMAX, "%lu", ULONG_MAX);
testfmt("-1", "%lld", (long long)-1);
testfmt(S_ULONGMAX, "%lu", ULLONG_MAX);
testfmt(S_ULLONGMAX, "%llu", ULLONG_MAX);
testfmt("-1", "%d", -1);
testfmt(S_UINT32MAX, "%lu", UINT32_MAX);
testfmt(S_UINT32MAX, "%u", UINT32_MAX);
testfmt("-1", "%hd", -1);
testfmt("65535", "%hu", USHRT_MAX);