6 static struct l_li t
[] = {
7 #if LDBL_MANT_DIG == 53
8 #include "sanity/lgamma_r.h"
9 #include "special/lgamma_r.h"
11 #elif LDBL_MANT_DIG == 64
12 #include "sanity/lgammal_r.h"
13 #include "special/lgammal_r.h"
20 #pragma STDC FENV_ACCESS ON
27 for (i
= 0; i
< sizeof t
/sizeof *t
; i
++) {
33 feclearexcept(FE_ALL_EXCEPT
);
34 y
= lgammal_r(p
->x
, &yi
);
35 e
= fetestexcept(INEXACT
|INVALID
|DIVBYZERO
|UNDERFLOW
|OVERFLOW
);
37 if (!checkexcept(e
, p
->e
, p
->r
)) {
38 printf("%s:%d: bad fp exception: %s lgammal_r(%La)=%La,%lld, want %s",
39 p
->file
, p
->line
, rstr(p
->r
), p
->x
, p
->y
, p
->i
, estr(p
->e
));
40 printf(" got %s\n", estr(e
));
43 d
= ulperrl(y
, p
->y
, p
->dy
);
44 // TODO: 2 ulp errors allowed
45 if ((p
->r
==RN
&& fabs(d
)>2) || (!isnan(p
->x
) && p
->x
!=-inf
&& !(p
->e
&DIVBYZERO
) && yi
!= p
->i
)) {
46 printf("%s:%d: %s lgammal_r(%La) want %La,%lld got %La,%d ulperr %.3f = %a + %a\n",
47 p
->file
, p
->line
, rstr(p
->r
), p
->x
, p
->y
, p
->i
, y
, yi
, d
, d
-p
->dy
, p
->dy
);