math: add some float f(float,int) and some float f(float,int*) tests
[libc-test] / src / math / sinf.c
index aabf6f5..efb695a 100644 (file)
@@ -3,9 +3,9 @@
 #include "util.h"
 
 static struct f_f t[] = {
-
 #include "ucb/sinf.h"
 #include "sanity/sinf.h"
+
 };
 
 int main(void)
@@ -21,14 +21,15 @@ int main(void)
                y = sinf(p->x);
                e = getexcept();
                if (!checkexcept(e, p->e, p->r)) {
-                       printf("%s sinf(%a)==%a except: want %s", rstr(p->r), p->x, p->y, estr(p->e));
+                       printf("%s:%d: bad fp exception: %s sinf(%a)=%a, want %s",
+                               p->file, p->line, rstr(p->r), p->x, p->y, estr(p->e));
                        printf(" got %s\n", estr(e));
                        err++;
                }
                d = ulperrf(y, p->y, p->dy);
                if (!checkulp(d, p->r)) {
-                       printf("%s sinf(%a) want %a got %a ulperr %.3f = %a + %a\n",
-                               rstr(p->r), p->x, p->y, y, d, d-p->dy, p->dy);
+                       printf("%s:%d: %s sinf(%a) want %a got %a ulperr %.3f = %a + %a\n",
+                               p->file, p->line, rstr(p->r), p->x, p->y, y, d, d-p->dy, p->dy);
                        err++;
                }
        }