forked from AFLplusplus/AFLplusplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-fp_NaNcases.c
86 lines (73 loc) · 1.86 KB
/
test-fp_NaNcases.c
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/* test cases for floating point comparison transformations
* compile with -DFLOAT_TYPE=float
* or -DFLOAT_TYPE=double
* or -DFLOAT_TYPE="long double"
*/
#include <assert.h>
#define _GNU_SOURCE
#include <math.h> /* for NaNs and infinity values */
int main() {
volatile FLOAT_TYPE a, b;
/* NaN */
#ifdef NAN
a = (FLOAT_TYPE)NAN; /* produces NaN */
#else
a = 0.0 / 0.0; /* produces NaN */
#endif
#ifdef INFINITY
FLOAT_TYPE inf = (FLOAT_TYPE)INFINITY;
#else
FLOAT_TYPE inf = 1.0 / 0.0; /* produces infinity */
#endif
FLOAT_TYPE negZero = 1.0 / -inf;
FLOAT_TYPE posZero = 0.0;
b = a;
assert(!(a < b));
assert(!(a <= b));
assert(!(a > b));
assert(!(a >= b));
assert((a != b));
assert(!(a == b));
b = 0.0;
assert(!(a < b));
assert(!(a <= b));
assert(!(a > b));
assert(!(a >= b));
assert((a != b));
assert(!(a == b));
b = 1.0 / -(1.0 / 0.0); /* negative 0 */
assert(!(a < b));
assert(!(a <= b));
assert(!(a > b));
assert(!(a >= b));
assert((a != b));
assert(!(a == b));
b = 42.0;
assert(!(a < b));
assert(!(a <= b));
assert(!(a > b));
assert(!(a >= b));
assert((a != b));
assert(!(a == b));
b = -42.0;
assert(!(a < b));
assert(!(a <= b));
assert(!(a > b));
assert(!(a >= b));
assert((a != b));
assert(!(a == b));
b = (1.0 / 0.0); /* positive infinity */
assert(!(a < b));
assert(!(a <= b));
assert(!(a > b));
assert(!(a >= b));
assert((a != b));
assert(!(a == b));
b = -(1.0 / 0.0); /* negative infinity */
assert(!(a < b));
assert(!(a <= b));
assert(!(a > b));
assert(!(a >= b));
assert((a != b));
assert(!(a == b));
}