mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
The %t{d,u} (ptrdiff_t) tests fail for the following reasons:
- ptrdiff_t is by definition int32_t on !LP64 architectures and int64_t on
LP64 architectures.
- intmax_t is by definition fixed to int64_t on all architectures.
- Some of the code in lib/libc/stdio/... is promoting ptrdiff_t to *intmax_t
when parsing/representing the value.
PR: 191674
MFC after: 1 week
Sponsored by: Dell EMC Isilon
|
||
|---|---|---|
| .. | ||
| fdopen_test.c | ||
| fmemopen2_test.c | ||
| fopen_test.c | ||
| freopen_test.c | ||
| getdelim_test.c | ||
| Makefile | ||
| Makefile.depend | ||
| mkostemp_test.c | ||
| open_memstream2_test.c | ||
| open_wmemstream_test.c | ||
| perror_test.c | ||
| print_positional_test.c | ||
| printbasic_test.c | ||
| printfloat_test.c | ||
| scanfloat_test.c | ||