summaryrefslogtreecommitdiff
path: root/test/math/rint.c
blob: c7bfab920defaea6ade5a1e47ed01033ba36b068 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include <math.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>

#define check_d1(func, param, expected) \
do { \
	int err; hex_union ur; hex_union up; \
	up.f = param; ur.f = result = func(param); \
	errors += (err = (result != expected)); \
	err \
	? printf("FAIL: %s(%g/"HEXFMT")=%g/"HEXFMT" (expected %g)\n", \
		#func, (param), (long long)up.hex, result, (long long)ur.hex, expected) \
	: printf("PASS: %s(%g)=%g\n", #func, (param), result); \
} while (0)

#define HEXFMT "%08llx"
typedef union {
	double f;
	uint64_t hex;
} hex_union;
double result;

int errors = 0;

int main(void)
{
	check_d1(rint, 0.6, 1.0);

        printf("Errors: %d\n", errors);
        return errors;
}