math: add lrint, lround
[libc-test] / src / math / llroundl.c
1 #include <stdint.h>
2 #include <stdio.h>
3 #include "util.h"
4
5 static struct l_i t[] = {
6 #if LDBL_MANT_DIG == 53
7 #include "sanity/llround.h"
8
9 #elif LDBL_MANT_DIG == 64
10 #include "sanity/llroundl.h"
11
12 #endif
13 };
14
15 int main(void)
16 {
17         #pragma STDC FENV_ACCESS ON
18         int yi;
19         float d;
20         int e, i, err = 0;
21         struct l_i *p;
22
23         for (i = 0; i < sizeof t/sizeof *t; i++) {
24                 p = t + i;
25
26                 if (p->r < 0)
27                         continue;
28                 fesetround(p->r);
29                 feclearexcept(FE_ALL_EXCEPT);
30                 yi = llroundl(p->x);
31                 e = fetestexcept(INEXACT|INVALID|DIVBYZERO|UNDERFLOW|OVERFLOW);
32
33                 if (!checkexcept(e, p->e, p->r)) {
34                         printf("%s:%d: bad fp exception: %s llroundl(%La)=%lld, want %s",
35                                 p->file, p->line, rstr(p->r), p->x, p->i, estr(p->e));
36                         printf(" got %s\n", estr(e));
37                         err++;
38                 }
39                 if (yi != p->i) {
40                         printf("%s:%d: %s llroundl(%La) want %lld got %d\n",
41                                 p->file, p->line, rstr(p->r), p->x, p->i, yi);
42                         err++;
43                 }
44         }
45         return !!err;
46 }