Lines Matching refs:fp_tests
84 } fp_tests[] = {
187 for (j=0; fp_tests[j].fmt; j++) {
188 i = snprintf(b, sizeof b, fp_tests[j].fmt, fp_tests[j].f);
189 if (i != strlen(fp_tests[j].expect)) {
191 fp_tests[j].fmt, fp_tests[j].f, i, strlen(fp_tests[j].expect));
193 if (strcmp(b, fp_tests[j].expect) != 0)
194 t_error("bad floating-point conversion: got \"%s\", want \"%s\"\n", b, fp_tests[j].expect);