Lines Matching refs:tests
187 } tests[] = { in ATF_TC_BODY() local
223 for (i = 0; i < nitems(tests); i++) { in ATF_TC_BODY()
224 test_tol(log2, tests[i].x, tests[i].log2x, DBL_ULP()); in ATF_TC_BODY()
225 test_tol(log2f, tests[i].x, tests[i].log2x, FLT_ULP()); in ATF_TC_BODY()
226 test_tol(log2l, tests[i].x, tests[i].log2x, LDBL_ULP()); in ATF_TC_BODY()
227 test_tol(log, tests[i].x, tests[i].logex, DBL_ULP()); in ATF_TC_BODY()
228 test_tol(logf, tests[i].x, tests[i].logex, FLT_ULP()); in ATF_TC_BODY()
229 test_tol(logl, tests[i].x, tests[i].logex, LDBL_ULP()); in ATF_TC_BODY()
230 test_tol(log10, tests[i].x, tests[i].log10x, DBL_ULP()); in ATF_TC_BODY()
231 test_tol(log10f, tests[i].x, tests[i].log10x, FLT_ULP()); in ATF_TC_BODY()
232 test_tol(log10l, tests[i].x, tests[i].log10x, LDBL_ULP()); in ATF_TC_BODY()
233 if (tests[i].x >= 0.5) { in ATF_TC_BODY()
234 test_tol(log1p, tests[i].x - 1, tests[i].logex, in ATF_TC_BODY()
236 test_tol(log1pf, tests[i].x - 1, tests[i].logex, in ATF_TC_BODY()
238 test_tol(log1pl, tests[i].x - 1, tests[i].logex, in ATF_TC_BODY()