Searched refs:testboth (Results 1 – 1 of 1) sorted by relevance
/freebsd/lib/msun/tests/ |
H A D | next_test.c | 59 #define testboth(arg1, arg2, ans, ex, prec) do { \ macro 64 testboth((arg1), (arg2), (ans), (ex), ); \ 65 testboth((arg1), (arg2), (ans), (ex), f); \ 66 testboth((arg1), (arg2), (ans), (ex), l); \ 144 testboth(1.0, 2.0, 1.0 + DBL_EPSILON, 0, ); in ATF_TC_BODY() 145 testboth(1.0, -INFINITY, 1.0 - DBL_EPSILON / 2, 0, ); in ATF_TC_BODY() 146 testboth(1.0, 2.0, 1.0 + FLT_EPSILON, 0, f); in ATF_TC_BODY() 147 testboth(1.0, -INFINITY, 1.0 - FLT_EPSILON / 2, 0, f); in ATF_TC_BODY() 148 testboth(1.0, 2.0, 1.0 + ldbl_eps, 0, l); in ATF_TC_BODY() 149 testboth(1.0, -INFINITY, 1.0 - ldbl_eps / 2, 0, l); in ATF_TC_BODY() [all …]
|