mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Make more libm tests condition exceptions tests with math-tests.h.
This commit is contained in:
@ -3,6 +3,7 @@
|
||||
#include <float.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <math-tests.h>
|
||||
|
||||
#if !defined(FE_OVERFLOW) && !defined(FE_UNDERFLOW)
|
||||
/* If there's no support for the exceptions this test is checking,
|
||||
@ -27,7 +28,7 @@ main (void)
|
||||
puts ("nexttowardf+ failed");
|
||||
++result;
|
||||
}
|
||||
if (fetestexcept (FE_OVERFLOW) == 0)
|
||||
if (EXCEPTION_TESTS (float) && fetestexcept (FE_OVERFLOW) == 0)
|
||||
{
|
||||
puts ("nexttowardf+ did not overflow");
|
||||
++result;
|
||||
@ -38,7 +39,7 @@ main (void)
|
||||
puts ("nexttowardf- failed");
|
||||
++result;
|
||||
}
|
||||
if (fetestexcept (FE_OVERFLOW) == 0)
|
||||
if (EXCEPTION_TESTS (float) && fetestexcept (FE_OVERFLOW) == 0)
|
||||
{
|
||||
puts ("nexttowardf- did not overflow");
|
||||
++result;
|
||||
@ -53,7 +54,7 @@ main (void)
|
||||
puts ("nexttowardf+ failed");
|
||||
++result;
|
||||
}
|
||||
if (fetestexcept (FE_UNDERFLOW) == 0)
|
||||
if (EXCEPTION_TESTS (float) && fetestexcept (FE_UNDERFLOW) == 0)
|
||||
{
|
||||
puts ("nexttowardf+ did not underflow");
|
||||
++result;
|
||||
@ -66,7 +67,7 @@ main (void)
|
||||
puts ("nexttowardf- failed");
|
||||
++result;
|
||||
}
|
||||
if (fetestexcept (FE_UNDERFLOW) == 0)
|
||||
if (EXCEPTION_TESTS (float) && fetestexcept (FE_UNDERFLOW) == 0)
|
||||
{
|
||||
puts ("nexttowardf- did not underflow");
|
||||
++result;
|
||||
@ -79,7 +80,7 @@ main (void)
|
||||
puts ("nexttowardf+ failed");
|
||||
++result;
|
||||
}
|
||||
if (fetestexcept (FE_UNDERFLOW) == 0)
|
||||
if (EXCEPTION_TESTS (float) && fetestexcept (FE_UNDERFLOW) == 0)
|
||||
{
|
||||
puts ("nexttowardf+ did not underflow");
|
||||
++result;
|
||||
@ -90,7 +91,7 @@ main (void)
|
||||
puts ("nexttowardf+ failed");
|
||||
++result;
|
||||
}
|
||||
if (fetestexcept (FE_UNDERFLOW) == 0)
|
||||
if (EXCEPTION_TESTS (float) && fetestexcept (FE_UNDERFLOW) == 0)
|
||||
{
|
||||
puts ("nexttowardf+ did not underflow");
|
||||
++result;
|
||||
@ -102,7 +103,7 @@ main (void)
|
||||
puts ("nexttowardf- failed");
|
||||
++result;
|
||||
}
|
||||
if (fetestexcept (FE_UNDERFLOW) == 0)
|
||||
if (EXCEPTION_TESTS (float) && fetestexcept (FE_UNDERFLOW) == 0)
|
||||
{
|
||||
puts ("nexttowardf- did not underflow");
|
||||
++result;
|
||||
@ -113,7 +114,7 @@ main (void)
|
||||
puts ("nexttowardf- failed");
|
||||
++result;
|
||||
}
|
||||
if (fetestexcept (FE_UNDERFLOW) == 0)
|
||||
if (EXCEPTION_TESTS (float) && fetestexcept (FE_UNDERFLOW) == 0)
|
||||
{
|
||||
puts ("nexttowardf- did not underflow");
|
||||
++result;
|
||||
@ -128,7 +129,7 @@ main (void)
|
||||
puts ("nexttoward+ failed");
|
||||
++result;
|
||||
}
|
||||
if (fetestexcept (FE_OVERFLOW) == 0)
|
||||
if (EXCEPTION_TESTS (double) && fetestexcept (FE_OVERFLOW) == 0)
|
||||
{
|
||||
puts ("nexttoward+ did not overflow");
|
||||
++result;
|
||||
@ -139,7 +140,7 @@ main (void)
|
||||
puts ("nexttoward- failed");
|
||||
++result;
|
||||
}
|
||||
if (fetestexcept (FE_OVERFLOW) == 0)
|
||||
if (EXCEPTION_TESTS (double) && fetestexcept (FE_OVERFLOW) == 0)
|
||||
{
|
||||
puts ("nexttoward- did not overflow");
|
||||
++result;
|
||||
@ -154,7 +155,7 @@ main (void)
|
||||
puts ("nexttoward+ failed");
|
||||
++result;
|
||||
}
|
||||
if (fetestexcept (FE_UNDERFLOW) == 0)
|
||||
if (EXCEPTION_TESTS (double) && fetestexcept (FE_UNDERFLOW) == 0)
|
||||
{
|
||||
puts ("nexttoward+ did not underflow");
|
||||
++result;
|
||||
@ -167,7 +168,7 @@ main (void)
|
||||
puts ("nexttoward- failed");
|
||||
++result;
|
||||
}
|
||||
if (fetestexcept (FE_UNDERFLOW) == 0)
|
||||
if (EXCEPTION_TESTS (double) && fetestexcept (FE_UNDERFLOW) == 0)
|
||||
{
|
||||
puts ("nexttoward- did not underflow");
|
||||
++result;
|
||||
@ -180,7 +181,7 @@ main (void)
|
||||
puts ("nexttoward+ failed");
|
||||
++result;
|
||||
}
|
||||
if (fetestexcept (FE_UNDERFLOW) == 0)
|
||||
if (EXCEPTION_TESTS (double) && fetestexcept (FE_UNDERFLOW) == 0)
|
||||
{
|
||||
puts ("nexttoward+ did not underflow");
|
||||
++result;
|
||||
@ -191,7 +192,7 @@ main (void)
|
||||
puts ("nexttoward+ failed");
|
||||
++result;
|
||||
}
|
||||
if (fetestexcept (FE_UNDERFLOW) == 0)
|
||||
if (EXCEPTION_TESTS (double) && fetestexcept (FE_UNDERFLOW) == 0)
|
||||
{
|
||||
puts ("nexttoward+ did not underflow");
|
||||
++result;
|
||||
@ -203,7 +204,7 @@ main (void)
|
||||
puts ("nexttoward- failed");
|
||||
++result;
|
||||
}
|
||||
if (fetestexcept (FE_UNDERFLOW) == 0)
|
||||
if (EXCEPTION_TESTS (double) && fetestexcept (FE_UNDERFLOW) == 0)
|
||||
{
|
||||
puts ("nexttoward- did not underflow");
|
||||
++result;
|
||||
@ -214,7 +215,7 @@ main (void)
|
||||
puts ("nexttoward- failed");
|
||||
++result;
|
||||
}
|
||||
if (fetestexcept (FE_UNDERFLOW) == 0)
|
||||
if (EXCEPTION_TESTS (double) && fetestexcept (FE_UNDERFLOW) == 0)
|
||||
{
|
||||
puts ("nexttoward- did not underflow");
|
||||
++result;
|
||||
@ -229,7 +230,7 @@ main (void)
|
||||
puts ("nexttowardl+ failed");
|
||||
++result;
|
||||
}
|
||||
if (fetestexcept (FE_OVERFLOW) == 0)
|
||||
if (EXCEPTION_TESTS (long double) && fetestexcept (FE_OVERFLOW) == 0)
|
||||
{
|
||||
puts ("nexttowardl+ did not overflow");
|
||||
++result;
|
||||
@ -240,7 +241,7 @@ main (void)
|
||||
puts ("nexttowardl failed");
|
||||
++result;
|
||||
}
|
||||
if (fetestexcept (FE_OVERFLOW) == 0)
|
||||
if (EXCEPTION_TESTS (long double) && fetestexcept (FE_OVERFLOW) == 0)
|
||||
{
|
||||
puts ("nexttowardl- did not overflow");
|
||||
++result;
|
||||
@ -255,7 +256,7 @@ main (void)
|
||||
puts ("nexttowardl+ failed");
|
||||
++result;
|
||||
}
|
||||
if (fetestexcept (FE_UNDERFLOW) == 0)
|
||||
if (EXCEPTION_TESTS (long double) && fetestexcept (FE_UNDERFLOW) == 0)
|
||||
{
|
||||
puts ("nexttowardl+ did not underflow");
|
||||
++result;
|
||||
@ -268,7 +269,7 @@ main (void)
|
||||
puts ("nexttowardl- failed");
|
||||
++result;
|
||||
}
|
||||
if (fetestexcept (FE_UNDERFLOW) == 0)
|
||||
if (EXCEPTION_TESTS (long double) && fetestexcept (FE_UNDERFLOW) == 0)
|
||||
{
|
||||
puts ("nexttowardl- did not underflow");
|
||||
++result;
|
||||
@ -281,7 +282,7 @@ main (void)
|
||||
puts ("nexttowardl+ failed");
|
||||
++result;
|
||||
}
|
||||
if (fetestexcept (FE_UNDERFLOW) == 0)
|
||||
if (EXCEPTION_TESTS (long double) && fetestexcept (FE_UNDERFLOW) == 0)
|
||||
{
|
||||
puts ("nexttowardl+ did not underflow");
|
||||
++result;
|
||||
@ -292,7 +293,7 @@ main (void)
|
||||
puts ("nexttowardl+ failed");
|
||||
++result;
|
||||
}
|
||||
if (fetestexcept (FE_UNDERFLOW) == 0)
|
||||
if (EXCEPTION_TESTS (long double) && fetestexcept (FE_UNDERFLOW) == 0)
|
||||
{
|
||||
puts ("nexttowardl+ did not underflow");
|
||||
++result;
|
||||
@ -304,7 +305,7 @@ main (void)
|
||||
puts ("nexttowardl- failed");
|
||||
++result;
|
||||
}
|
||||
if (fetestexcept (FE_UNDERFLOW) == 0)
|
||||
if (EXCEPTION_TESTS (long double) && fetestexcept (FE_UNDERFLOW) == 0)
|
||||
{
|
||||
puts ("nexttowardl- did not underflow");
|
||||
++result;
|
||||
@ -315,7 +316,7 @@ main (void)
|
||||
puts ("nexttowardl- failed");
|
||||
++result;
|
||||
}
|
||||
if (fetestexcept (FE_UNDERFLOW) == 0)
|
||||
if (EXCEPTION_TESTS (long double) && fetestexcept (FE_UNDERFLOW) == 0)
|
||||
{
|
||||
puts ("nexttowardl- did not underflow");
|
||||
++result;
|
||||
|
Reference in New Issue
Block a user