6 #include <math-tests.h>
8 #if !defined(FE_OVERFLOW) && !defined(FE_UNDERFLOW)
9 /* If there's no support for the exceptions this test is checking,
10 then just return success and allow the test to be compiled. */
11 # define fetestexcept(e) 1
22 long double tl
= (long double) FLT_MAX
+ 0x1.0p128L
;
25 feclearexcept (FE_ALL_EXCEPT
);
26 if (nexttowardf (m
, tl
) != fi
)
28 puts ("nexttowardf+ failed");
31 if (EXCEPTION_TESTS (float) && fetestexcept (FE_OVERFLOW
) == 0)
33 puts ("nexttowardf+ did not overflow");
36 feclearexcept (FE_ALL_EXCEPT
);
37 if (nexttowardf (-m
, -tl
) != -fi
)
39 puts ("nexttowardf- failed");
42 if (EXCEPTION_TESTS (float) && fetestexcept (FE_OVERFLOW
) == 0)
44 puts ("nexttowardf- did not overflow");
50 feclearexcept (FE_ALL_EXCEPT
);
51 fi
= nexttowardf (m
, fi
);
52 if (fi
< 0 || fi
>= FLT_MIN
)
54 puts ("nexttowardf+ failed");
57 if (EXCEPTION_TESTS (float) && fetestexcept (FE_UNDERFLOW
) == 0)
59 puts ("nexttowardf+ did not underflow");
63 feclearexcept (FE_ALL_EXCEPT
);
64 fi
= nexttowardf (-m
, -fi
);
65 if (fi
> 0 || fi
<= -FLT_MIN
)
67 puts ("nexttowardf- failed");
70 if (EXCEPTION_TESTS (float) && fetestexcept (FE_UNDERFLOW
) == 0)
72 puts ("nexttowardf- did not underflow");
76 feclearexcept (FE_ALL_EXCEPT
);
77 m
= nexttowardf (zero
, inf
);
78 if (m
< 0.0 || m
>= FLT_MIN
)
80 puts ("nexttowardf+ failed");
83 if (EXCEPTION_TESTS (float) && fetestexcept (FE_UNDERFLOW
) == 0)
85 puts ("nexttowardf+ did not underflow");
88 feclearexcept (FE_ALL_EXCEPT
);
89 if (nexttowardf (m
, fi
) != 0.0)
91 puts ("nexttowardf+ failed");
94 if (EXCEPTION_TESTS (float) && fetestexcept (FE_UNDERFLOW
) == 0)
96 puts ("nexttowardf+ did not underflow");
99 feclearexcept (FE_ALL_EXCEPT
);
100 m
= nexttowardf (copysignf (zero
, -1.0), -inf
);
101 if (m
> 0.0 || m
<= -FLT_MIN
)
103 puts ("nexttowardf- failed");
106 if (EXCEPTION_TESTS (float) && fetestexcept (FE_UNDERFLOW
) == 0)
108 puts ("nexttowardf- did not underflow");
111 feclearexcept (FE_ALL_EXCEPT
);
112 if (nexttowardf (m
, -fi
) != 0.0)
114 puts ("nexttowardf- failed");
117 if (EXCEPTION_TESTS (float) && fetestexcept (FE_UNDERFLOW
) == 0)
119 puts ("nexttowardf- did not underflow");
123 tl
= (long double) DBL_MAX
+ 1.0e305L
;
124 double di
= INFINITY
;
126 feclearexcept (FE_ALL_EXCEPT
);
127 if (nexttoward (dm
, tl
) != di
)
129 puts ("nexttoward+ failed");
132 if (EXCEPTION_TESTS (double) && fetestexcept (FE_OVERFLOW
) == 0)
134 puts ("nexttoward+ did not overflow");
137 feclearexcept (FE_ALL_EXCEPT
);
138 if (nexttoward (-dm
, -tl
) != -di
)
140 puts ("nexttoward- failed");
143 if (EXCEPTION_TESTS (double) && fetestexcept (FE_OVERFLOW
) == 0)
145 puts ("nexttoward- did not overflow");
151 feclearexcept (FE_ALL_EXCEPT
);
152 di
= nexttoward (dm
, di
);
153 if (di
< 0 || di
>= DBL_MIN
)
155 puts ("nexttoward+ failed");
158 if (EXCEPTION_TESTS (double) && fetestexcept (FE_UNDERFLOW
) == 0)
160 puts ("nexttoward+ did not underflow");
164 feclearexcept (FE_ALL_EXCEPT
);
165 di
= nexttoward (-dm
, -di
);
166 if (di
> 0 || di
<= -DBL_MIN
)
168 puts ("nexttoward- failed");
171 if (EXCEPTION_TESTS (double) && fetestexcept (FE_UNDERFLOW
) == 0)
173 puts ("nexttoward- did not underflow");
177 feclearexcept (FE_ALL_EXCEPT
);
178 dm
= nexttoward (zero
, inf
);
179 if (dm
< 0.0 || dm
>= DBL_MIN
)
181 puts ("nexttoward+ failed");
184 if (EXCEPTION_TESTS (double) && fetestexcept (FE_UNDERFLOW
) == 0)
186 puts ("nexttoward+ did not underflow");
189 feclearexcept (FE_ALL_EXCEPT
);
190 if (nexttoward (dm
, di
) != 0.0)
192 puts ("nexttoward+ failed");
195 if (EXCEPTION_TESTS (double) && fetestexcept (FE_UNDERFLOW
) == 0)
197 puts ("nexttoward+ did not underflow");
200 feclearexcept (FE_ALL_EXCEPT
);
201 dm
= nexttoward (copysign (zero
, -1.0), -inf
);
202 if (dm
> 0.0 || dm
<= -DBL_MIN
)
204 puts ("nexttoward- failed");
207 if (EXCEPTION_TESTS (double) && fetestexcept (FE_UNDERFLOW
) == 0)
209 puts ("nexttoward- did not underflow");
212 feclearexcept (FE_ALL_EXCEPT
);
213 if (nexttoward (dm
, -di
) != 0.0)
215 puts ("nexttoward- failed");
218 if (EXCEPTION_TESTS (double) && fetestexcept (FE_UNDERFLOW
) == 0)
220 puts ("nexttoward- did not underflow");
224 long double li
= INFINITY
;
225 long double lm
= LDBL_MAX
;
226 feclearexcept (FE_ALL_EXCEPT
);
227 if (nexttowardl (lm
, li
) != li
)
229 puts ("nexttowardl+ failed");
232 if (EXCEPTION_TESTS (long double) && fetestexcept (FE_OVERFLOW
) == 0)
234 puts ("nexttowardl+ did not overflow");
237 feclearexcept (FE_ALL_EXCEPT
);
238 if (nexttowardl (-lm
, -li
) != -li
)
240 puts ("nexttowardl failed");
243 if (EXCEPTION_TESTS (long double) && fetestexcept (FE_OVERFLOW
) == 0)
245 puts ("nexttowardl- did not overflow");
251 feclearexcept (FE_ALL_EXCEPT
);
252 li
= nexttowardl (lm
, li
);
253 if (li
< 0 || li
>= LDBL_MIN
)
255 puts ("nexttowardl+ failed");
258 if (EXCEPTION_TESTS (long double) && fetestexcept (FE_UNDERFLOW
) == 0)
260 puts ("nexttowardl+ did not underflow");
264 feclearexcept (FE_ALL_EXCEPT
);
265 li
= nexttowardl (-lm
, -li
);
266 if (li
> 0 || li
<= -LDBL_MIN
)
268 puts ("nexttowardl- failed");
271 if (EXCEPTION_TESTS (long double) && fetestexcept (FE_UNDERFLOW
) == 0)
273 puts ("nexttowardl- did not underflow");
277 feclearexcept (FE_ALL_EXCEPT
);
278 lm
= nexttowardl (zero
, inf
);
279 if (lm
< 0.0 || lm
>= LDBL_MIN
)
281 puts ("nexttowardl+ failed");
284 if (EXCEPTION_TESTS (long double) && fetestexcept (FE_UNDERFLOW
) == 0)
286 puts ("nexttowardl+ did not underflow");
289 feclearexcept (FE_ALL_EXCEPT
);
290 if (nexttowardl (lm
, li
) != 0.0)
292 puts ("nexttowardl+ failed");
295 if (EXCEPTION_TESTS (long double) && fetestexcept (FE_UNDERFLOW
) == 0)
297 puts ("nexttowardl+ did not underflow");
300 feclearexcept (FE_ALL_EXCEPT
);
301 lm
= nexttowardl (copysign (zero
, -1.0), -inf
);
302 if (lm
> 0.0 || lm
<= -LDBL_MIN
)
304 puts ("nexttowardl- failed");
307 if (EXCEPTION_TESTS (long double) && fetestexcept (FE_UNDERFLOW
) == 0)
309 puts ("nexttowardl- did not underflow");
312 feclearexcept (FE_ALL_EXCEPT
);
313 if (nexttowardl (lm
, -li
) != 0.0)
315 puts ("nexttowardl- failed");
318 if (EXCEPTION_TESTS (long double) && fetestexcept (FE_UNDERFLOW
) == 0)
320 puts ("nexttowardl- did not underflow");