2003-12-07 22:22:46 +01:00
|
|
|
#include <fenv.h>
|
2003-12-07 04:25:24 +01:00
|
|
|
#include <math.h>
|
|
|
|
#include <float.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2007-04-16 22:41:42 +02:00
|
|
|
float zero = 0.0;
|
|
|
|
float inf = INFINITY;
|
|
|
|
|
2003-12-07 04:25:24 +01:00
|
|
|
int
|
|
|
|
main (void)
|
|
|
|
{
|
|
|
|
int result = 0;
|
|
|
|
|
|
|
|
float i = INFINITY;
|
|
|
|
float m = FLT_MAX;
|
2003-12-07 22:22:46 +01:00
|
|
|
feclearexcept (FE_ALL_EXCEPT);
|
2003-12-07 04:25:24 +01:00
|
|
|
if (nextafterf (m, i) != i)
|
|
|
|
{
|
2003-12-07 22:22:46 +01:00
|
|
|
puts ("nextafterf+ failed");
|
|
|
|
++result;
|
|
|
|
}
|
2003-12-09 19:10:47 +01:00
|
|
|
if (fetestexcept (FE_OVERFLOW) == 0)
|
2003-12-07 22:22:46 +01:00
|
|
|
{
|
|
|
|
puts ("nextafterf+ did not overflow");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
|
|
if (nextafterf (-m, -i) != -i)
|
|
|
|
{
|
|
|
|
puts ("nextafterf- failed");
|
|
|
|
++result;
|
|
|
|
}
|
2003-12-09 19:10:47 +01:00
|
|
|
if (fetestexcept (FE_OVERFLOW) == 0)
|
2003-12-07 22:22:46 +01:00
|
|
|
{
|
|
|
|
puts ("nextafterf- did not overflow");
|
2003-12-07 04:25:24 +01:00
|
|
|
++result;
|
|
|
|
}
|
|
|
|
|
2007-04-16 22:41:42 +02:00
|
|
|
i = 0;
|
|
|
|
m = FLT_MIN;
|
|
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
|
|
i = nextafterf (m, i);
|
|
|
|
if (i < 0 || i >= FLT_MIN)
|
|
|
|
{
|
|
|
|
puts ("nextafterf+ failed");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
if (fetestexcept (FE_UNDERFLOW) == 0)
|
|
|
|
{
|
|
|
|
puts ("nextafterf+ did not underflow");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
i = 0;
|
|
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
|
|
i = nextafterf (-m, -i);
|
|
|
|
if (i > 0 || i <= -FLT_MIN)
|
|
|
|
{
|
|
|
|
puts ("nextafterf- failed");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
if (fetestexcept (FE_UNDERFLOW) == 0)
|
|
|
|
{
|
|
|
|
puts ("nextafterf- did not underflow");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
i = -INFINITY;
|
|
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
|
|
m = nextafterf (zero, inf);
|
|
|
|
if (m < 0.0 || m >= FLT_MIN)
|
|
|
|
{
|
|
|
|
puts ("nextafterf+ failed");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
if (fetestexcept (FE_UNDERFLOW) == 0)
|
|
|
|
{
|
|
|
|
puts ("nextafterf+ did not underflow");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
|
|
if (nextafterf (m, i) != 0.0)
|
|
|
|
{
|
|
|
|
puts ("nextafterf+ failed");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
if (fetestexcept (FE_UNDERFLOW) == 0)
|
|
|
|
{
|
|
|
|
puts ("nextafterf+ did not underflow");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
|
|
m = nextafterf (copysignf (zero, -1.0), -inf);
|
|
|
|
if (m > 0.0 || m <= -FLT_MIN)
|
|
|
|
{
|
|
|
|
puts ("nextafterf- failed");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
if (fetestexcept (FE_UNDERFLOW) == 0)
|
|
|
|
{
|
|
|
|
puts ("nextafterf- did not underflow");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
|
|
if (nextafterf (m, -i) != 0.0)
|
|
|
|
{
|
|
|
|
puts ("nextafterf- failed");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
if (fetestexcept (FE_UNDERFLOW) == 0)
|
|
|
|
{
|
|
|
|
puts ("nextafterf- did not underflow");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
|
2003-12-07 04:25:24 +01:00
|
|
|
double di = INFINITY;
|
|
|
|
double dm = DBL_MAX;
|
2003-12-07 22:22:46 +01:00
|
|
|
feclearexcept (FE_ALL_EXCEPT);
|
2003-12-07 04:25:24 +01:00
|
|
|
if (nextafter (dm, di) != di)
|
2003-12-07 22:22:46 +01:00
|
|
|
{
|
|
|
|
puts ("nextafter+ failed");
|
|
|
|
++result;
|
|
|
|
}
|
2003-12-09 19:10:47 +01:00
|
|
|
if (fetestexcept (FE_OVERFLOW) == 0)
|
2003-12-07 22:22:46 +01:00
|
|
|
{
|
|
|
|
puts ("nextafter+ did not overflow");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
|
|
if (nextafter (-dm, -di) != -di)
|
2003-12-07 04:25:24 +01:00
|
|
|
{
|
|
|
|
puts ("nextafter failed");
|
|
|
|
++result;
|
|
|
|
}
|
2003-12-09 19:10:47 +01:00
|
|
|
if (fetestexcept (FE_OVERFLOW) == 0)
|
2003-12-07 22:22:46 +01:00
|
|
|
{
|
|
|
|
puts ("nextafter- did not overflow");
|
|
|
|
++result;
|
|
|
|
}
|
2003-12-07 04:25:24 +01:00
|
|
|
|
2007-04-16 22:41:42 +02:00
|
|
|
di = 0;
|
|
|
|
dm = DBL_MIN;
|
|
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
|
|
di = nextafter (dm, di);
|
|
|
|
if (di < 0 || di >= DBL_MIN)
|
|
|
|
{
|
|
|
|
puts ("nextafter+ failed");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
if (fetestexcept (FE_UNDERFLOW) == 0)
|
|
|
|
{
|
|
|
|
puts ("nextafter+ did not underflow");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
di = 0;
|
|
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
|
|
di = nextafter (-dm, -di);
|
|
|
|
if (di > 0 || di <= -DBL_MIN)
|
|
|
|
{
|
|
|
|
puts ("nextafter- failed");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
if (fetestexcept (FE_UNDERFLOW) == 0)
|
|
|
|
{
|
|
|
|
puts ("nextafter- did not underflow");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
di = -INFINITY;
|
|
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
|
|
dm = nextafter (zero, inf);
|
|
|
|
if (dm < 0.0 || dm >= DBL_MIN)
|
|
|
|
{
|
|
|
|
puts ("nextafter+ failed");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
if (fetestexcept (FE_UNDERFLOW) == 0)
|
|
|
|
{
|
|
|
|
puts ("nextafter+ did not underflow");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
|
|
if (nextafter (dm, di) != 0.0)
|
|
|
|
{
|
|
|
|
puts ("nextafter+ failed");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
if (fetestexcept (FE_UNDERFLOW) == 0)
|
|
|
|
{
|
|
|
|
puts ("nextafter+ did not underflow");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
|
|
dm = nextafter (copysign (zero, -1.0), -inf);
|
|
|
|
if (dm > 0.0 || dm <= -DBL_MIN)
|
|
|
|
{
|
|
|
|
puts ("nextafter- failed");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
if (fetestexcept (FE_UNDERFLOW) == 0)
|
|
|
|
{
|
|
|
|
puts ("nextafter- did not underflow");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
|
|
if (nextafter (dm, -di) != 0.0)
|
|
|
|
{
|
|
|
|
puts ("nextafter- failed");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
if (fetestexcept (FE_UNDERFLOW) == 0)
|
|
|
|
{
|
|
|
|
puts ("nextafter- did not underflow");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef NO_LONG_DOUBLE
|
|
|
|
long double li = INFINITY;
|
|
|
|
long double lm = LDBL_MAX;
|
|
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
|
|
if (nextafterl (lm, li) != li)
|
|
|
|
{
|
|
|
|
puts ("nextafterl+ failed");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
if (fetestexcept (FE_OVERFLOW) == 0)
|
|
|
|
{
|
|
|
|
puts ("nextafterl+ did not overflow");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
|
|
if (nextafterl (-lm, -li) != -li)
|
|
|
|
{
|
|
|
|
puts ("nextafterl failed");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
if (fetestexcept (FE_OVERFLOW) == 0)
|
|
|
|
{
|
|
|
|
puts ("nextafterl- did not overflow");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
|
|
|
|
li = 0;
|
|
|
|
lm = LDBL_MIN;
|
|
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
|
|
li = nextafterl (lm, li);
|
|
|
|
if (li < 0 || li >= LDBL_MIN)
|
|
|
|
{
|
|
|
|
puts ("nextafterl+ failed");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
if (fetestexcept (FE_UNDERFLOW) == 0)
|
|
|
|
{
|
|
|
|
puts ("nextafterl+ did not underflow");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
li = 0;
|
|
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
|
|
li = nextafterl (-lm, -li);
|
|
|
|
if (li > 0 || li <= -LDBL_MIN)
|
|
|
|
{
|
|
|
|
puts ("nextafterl- failed");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
if (fetestexcept (FE_UNDERFLOW) == 0)
|
|
|
|
{
|
|
|
|
puts ("nextafterl- did not underflow");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
li = -INFINITY;
|
|
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
|
|
lm = nextafterl (zero, inf);
|
|
|
|
if (lm < 0.0 || lm >= LDBL_MIN)
|
|
|
|
{
|
|
|
|
puts ("nextafterl+ failed");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
if (fetestexcept (FE_UNDERFLOW) == 0)
|
|
|
|
{
|
|
|
|
puts ("nextafterl+ did not underflow");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
|
|
if (nextafterl (lm, li) != 0.0)
|
|
|
|
{
|
|
|
|
puts ("nextafterl+ failed");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
if (fetestexcept (FE_UNDERFLOW) == 0)
|
|
|
|
{
|
|
|
|
puts ("nextafterl+ did not underflow");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
|
|
lm = nextafterl (copysign (zero, -1.0), -inf);
|
|
|
|
if (lm > 0.0 || lm <= -LDBL_MIN)
|
|
|
|
{
|
|
|
|
puts ("nextafterl- failed");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
if (fetestexcept (FE_UNDERFLOW) == 0)
|
|
|
|
{
|
|
|
|
puts ("nextafterl- did not underflow");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
feclearexcept (FE_ALL_EXCEPT);
|
|
|
|
if (nextafterl (lm, -li) != 0.0)
|
|
|
|
{
|
|
|
|
puts ("nextafterl- failed");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
if (fetestexcept (FE_UNDERFLOW) == 0)
|
|
|
|
{
|
|
|
|
puts ("nextafterl- did not underflow");
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-12-07 04:25:24 +01:00
|
|
|
return result;
|
|
|
|
}
|