add generated math tests
[libc-test.git] / src / math / floorf.c
blob2e304a3359f390c0e4c112cc64471429fdd40d28
1 #include <stdint.h>
2 #include <stdio.h>
3 #include "util.h"
5 static struct f_f t[] = {
7 #include "ucb/floorf.h"
8 #include "sanity/floorf.h"
9 };
11 int main(void)
13 float y;
14 float d;
15 int e, i, err = 0;
16 struct f_f *p;
18 for (i = 0; i < sizeof t/sizeof *t; i++) {
19 p = t + i;
20 setupfenv(p->r);
21 y = floorf(p->x);
22 e = getexcept();
23 if (!checkexcept(e, p->e, p->r)) {
24 printf("%s floorf(%a)==%a except: want %s", rstr(p->r), p->x, p->y, estr(p->e));
25 printf(" got %s\n", estr(e));
26 err++;
28 d = ulperrf(y, p->y, p->dy);
29 if (!checkulp(d, p->r)) {
30 printf("%s floorf(%a) want %a got %a ulperr %.3f = %a + %a\n",
31 rstr(p->r), p->x, p->y, y, d, d-p->dy, p->dy);
32 err++;
35 return !!err;