xref: /third_party/musl/libc-test/src/math/log10.c (revision 570af302)
1#include <stdint.h>
2#include <stdio.h>
3#include "mtest.h"
4
5static struct d_d t[] = {
6#include "crlibm/log10.h"
7#include "ucb/log10.h"
8#include "sanity/log10.h"
9#include "special/log10.h"
10
11};
12
13int main(void)
14{
15	#pragma STDC FENV_ACCESS ON
16	double y;
17	float d;
18	int e, i, err = 0;
19	struct d_d *p;
20
21	for (i = 0; i < sizeof t/sizeof *t; i++) {
22		p = t + i;
23
24		if (p->r < 0)
25			continue;
26		fesetround(p->r);
27		feclearexcept(FE_ALL_EXCEPT);
28		y = log10(p->x);
29		e = fetestexcept(INEXACT|INVALID|DIVBYZERO|UNDERFLOW|OVERFLOW);
30
31		if (!checkexcept(e, p->e, p->r)) {
32			printf("%s:%d: bad fp exception: %s log10(%a)=%a, want %s",
33				p->file, p->line, rstr(p->r), p->x, p->y, estr(p->e));
34			printf(" got %s\n", estr(e));
35			err++;
36		}
37		d = ulperr(y, p->y, p->dy);
38		if (!checkulp(d, p->r)) {
39			printf("%s:%d: %s log10(%a) want %a got %a ulperr %.3f = %a + %a\n",
40				p->file, p->line, rstr(p->r), p->x, p->y, y, d, d-p->dy, p->dy);
41			err++;
42		}
43	}
44	return !!err;
45}
46