mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-27 03:41:23 +08:00
07449987c9
2003-12-07 Ulrich Drepper <drepper@redhat.com> * sysdeps/i386/fpu/s_nexttowardf.c: Construct overflow value correctly. * sysdeps/i386/fpu/s_nexttoward.c: Likewise. * sysdeps/ieee754/ldbl-128/s_nexttoward.c: Likewise. * sysdeps/ieee754/ldbl-96/s_nexttoward.c: Likewise. * math/Makefile (tests): Add bug-nexttoward. * math/bug-nexttowward.c: New file. * sysdeps/generic/s_nextafter.c: Make sure overflow exception is set. * sysdeps/ieee754/flt-32/s_nextafterf.c: Likewise. * math/bug-nextafter.c (main): Add tests for overflow and negative values.
64 lines
1.2 KiB
C
64 lines
1.2 KiB
C
#include <fenv.h>
|
|
#include <math.h>
|
|
#include <float.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
int result = 0;
|
|
|
|
float i = INFINITY;
|
|
float m = FLT_MAX;
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
if (nextafterf (m, i) != i)
|
|
{
|
|
puts ("nextafterf+ failed");
|
|
++result;
|
|
}
|
|
if (fetestexcept (FE_OVERFLOW) != 0)
|
|
{
|
|
puts ("nextafterf+ did not overflow");
|
|
++result;
|
|
}
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
if (nextafterf (-m, -i) != -i)
|
|
{
|
|
puts ("nextafterf- failed");
|
|
++result;
|
|
}
|
|
if (fetestexcept (FE_OVERFLOW) != 0)
|
|
{
|
|
puts ("nextafterf- did not overflow");
|
|
++result;
|
|
}
|
|
|
|
double di = INFINITY;
|
|
double dm = DBL_MAX;
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
if (nextafter (dm, di) != di)
|
|
{
|
|
puts ("nextafter+ failed");
|
|
++result;
|
|
}
|
|
if (fetestexcept (FE_OVERFLOW) != 0)
|
|
{
|
|
puts ("nextafter+ did not overflow");
|
|
++result;
|
|
}
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
if (nextafter (-dm, -di) != -di)
|
|
{
|
|
puts ("nextafter failed");
|
|
++result;
|
|
}
|
|
if (fetestexcept (FE_OVERFLOW) != 0)
|
|
{
|
|
puts ("nextafter- did not overflow");
|
|
++result;
|
|
}
|
|
|
|
return result;
|
|
}
|