mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-08 17:42:12 +03:00
* stdio-common/tstdiomisc.c (F): Use NAN to get NaN value.
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
2006-01-07 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* stdio-common/tstdiomisc.c (F): Use NAN to get NaN value.
|
||||||
|
|
||||||
2006-01-06 Ulrich Drepper <drepper@redhat.com>
|
2006-01-06 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* elf/tst-tls8.c (do_test): Use $ORIGIN in module names.
|
* elf/tst-tls8.c (do_test): Use $ORIGIN in module names.
|
||||||
|
@@ -27,7 +27,7 @@ fsetpos: likewise
|
|||||||
|
|
||||||
<stdlib.h>:
|
<stdlib.h>:
|
||||||
|
|
||||||
atext: it is guaranteed that a certain number of handlers can be
|
atexit: it is guaranteed that a certain number of handlers can be
|
||||||
registered, so some calls might need not be checked
|
registered, so some calls might need not be checked
|
||||||
on_exit: same
|
on_exit: same
|
||||||
random functions: one might want to discard a number of results. In any
|
random functions: one might want to discard a number of results. In any
|
||||||
|
@@ -46,15 +46,8 @@ t2 (void)
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if FLT_EVAL_METHOD == 2
|
volatile double nanval;
|
||||||
volatile long double dbl_max = LDBL_MAX;
|
|
||||||
# define FLT_FLT_FMT "%Lf %LF"
|
|
||||||
# define FLT_FLT_WFMT L"%Lf %LF"
|
|
||||||
#else
|
|
||||||
# define dbl_max DBL_MAX
|
|
||||||
# define FLT_FLT_FMT "%f %F"
|
|
||||||
# define FLT_FLT_WFMT L"%f %F"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
F (void)
|
F (void)
|
||||||
@@ -63,9 +56,9 @@ F (void)
|
|||||||
wchar_t wbuf[10];
|
wchar_t wbuf[10];
|
||||||
int result;
|
int result;
|
||||||
|
|
||||||
snprintf (buf, sizeof buf, FLT_FLT_FMT,
|
nanval = NAN;
|
||||||
dbl_max * dbl_max - dbl_max * dbl_max,
|
|
||||||
dbl_max * dbl_max - dbl_max * dbl_max);
|
snprintf (buf, sizeof buf, "%f %F", nanval, nanval);
|
||||||
result = strcmp (buf, "nan NAN") != 0;
|
result = strcmp (buf, "nan NAN") != 0;
|
||||||
printf ("expected \"nan NAN\", got \"%s\"\n", buf);
|
printf ("expected \"nan NAN\", got \"%s\"\n", buf);
|
||||||
|
|
||||||
@@ -73,9 +66,7 @@ F (void)
|
|||||||
result |= strcmp (buf, "inf INF") != 0;
|
result |= strcmp (buf, "inf INF") != 0;
|
||||||
printf ("expected \"inf INF\", got \"%s\"\n", buf);
|
printf ("expected \"inf INF\", got \"%s\"\n", buf);
|
||||||
|
|
||||||
swprintf (wbuf, sizeof wbuf / sizeof (wbuf[0]), FLT_FLT_WFMT,
|
swprintf (wbuf, sizeof wbuf / sizeof (wbuf[0]), L"%f %F", nanval, nanval);
|
||||||
dbl_max * dbl_max - dbl_max * dbl_max,
|
|
||||||
dbl_max * dbl_max - dbl_max * dbl_max);
|
|
||||||
result |= wcscmp (wbuf, L"nan NAN") != 0;
|
result |= wcscmp (wbuf, L"nan NAN") != 0;
|
||||||
printf ("expected L\"nan NAN\", got L\"%S\"\n", wbuf);
|
printf ("expected L\"nan NAN\", got L\"%S\"\n", wbuf);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user