blob: b724650309ae2d99df5274f1b91978b923389e31 [file] [log] [blame]
#include <stdint.h>
#include <stdio.h>
#include "mtest.h"
static struct d_dd t[] = {
#include "sanity/modf.h"
#include "special/modf.h"
};
int main(void)
{
#pragma STDC FENV_ACCESS ON
double y, yi;
float d, di;
int e, i, err = 0;
struct d_dd *p;
for (i = 0; i < sizeof t/sizeof *t; i++) {
p = t + i;
if (p->r < 0)
continue;
fesetround(p->r);
feclearexcept(FE_ALL_EXCEPT);
y = modf(p->x, &yi);
e = fetestexcept(INEXACT|INVALID|DIVBYZERO|UNDERFLOW|OVERFLOW);
/* TODO: fix inexact */
if (!checkexceptall(e|INEXACT, p->e|INEXACT, p->r)) {
printf("%s:%d: bad fp exception: %s modf(%a)=%a,%a, want %s",
p->file, p->line, rstr(p->r), p->x, p->y, p->y2, estr(p->e));
printf(" got %s\n", estr(e));
err++;
}
d = ulperr(y, p->y, p->dy);
di = ulperr(yi, p->y2, p->dy2);
if (!checkcr(y, p->y, p->r) || !checkcr(yi, p->y2, p->r)) {
printf("%s:%d: %s modf(%a) want %a,%a got %a,%a, ulperr %.3f = %a + %a, %.3f = %a + %a\n",
p->file, p->line, rstr(p->r), p->x, p->y, p->y2, y, yi, d, d-p->dy, p->dy, di, di-p->dy2, p->dy2);
err++;
}
}
return !!err;
}