7 static struct f_fi t
[] = {
8 #include "sanity/lgammaf_r.h"
9 #include "special/lgammaf_r.h"
15 #pragma STDC FENV_ACCESS ON
22 for (i
= 0; i
< sizeof t
/sizeof *t
; i
++) {
28 feclearexcept(FE_ALL_EXCEPT
);
29 y
= lgammaf_r(p
->x
, &yi
);
30 e
= fetestexcept(INEXACT
|INVALID
|DIVBYZERO
|UNDERFLOW
|OVERFLOW
);
32 if (!checkexcept(e
, p
->e
, p
->r
)) {
33 printf("%s:%d: bad fp exception: %s lgammaf_r(%a)=%a,%lld, want %s",
34 p
->file
, p
->line
, rstr(p
->r
), p
->x
, p
->y
, p
->i
, estr(p
->e
));
35 printf(" got %s\n", estr(e
));
38 d
= ulperrf(y
, p
->y
, p
->dy
);
39 if (!checkulp(d
, p
->r
) || (!isnan(p
->x
) && p
->x
!=-inf
&& !(p
->e
&DIVBYZERO
) && yi
!= p
->i
)) {
40 printf("%s:%d: %s lgammaf_r(%a) want %a,%lld got %a,%d ulperr %.3f = %a + %a\n",
41 p
->file
, p
->line
, rstr(p
->r
), p
->x
, p
->y
, p
->i
, y
, yi
, d
, d
-p
->dy
, p
->dy
);