sigaltstck: add missing include
[libc-test.git] / src / math / lroundf.c
blobc9544821fd59fb361d88ba10c62bfb02e4731a3c
1 #include <stdint.h>
2 #include <stdio.h>
3 #include "mtest.h"
5 static struct f_i t[] = {
6 #include "sanity/lroundf.h"
7 #include "special/lroundf.h"
9 };
11 int main(void)
13 #pragma STDC FENV_ACCESS ON
14 long long yi;
15 int e, i, err = 0;
16 struct f_i *p;
18 for (i = 0; i < sizeof t/sizeof *t; i++) {
19 p = t + i;
21 if (p->r < 0)
22 continue;
23 fesetround(p->r);
24 feclearexcept(FE_ALL_EXCEPT);
25 yi = lroundf(p->x);
26 e = fetestexcept(INEXACT|INVALID|DIVBYZERO|UNDERFLOW|OVERFLOW);
28 if (!checkexcept(e, p->e, p->r)) {
29 printf("%s:%d: bad fp exception: %s lroundf(%a)=%lld, want %s",
30 p->file, p->line, rstr(p->r), p->x, p->i, estr(p->e));
31 printf(" got %s\n", estr(e));
32 err++;
34 if (!(p->e&INVALID) && yi != p->i) {
35 printf("%s:%d: %s lroundf(%a) want %lld got %lld\n",
36 p->file, p->line, rstr(p->r), p->x, p->i, yi);
37 err++;
40 return !!err;