Lines Matching defs:errors
1414 int errors = 0;
1417 errors += string_check(buf, "09foo");
1420 errors += string_check(buf, " fo");
1423 errors += string_check(buf, "foo");
1426 errors += string_check(buf, "foo");
1429 errors += string_check(buf, "foo ");
1432 errors += string_check(buf, " foo");
1435 errors += string_check(buf, "foo ");
1437 if(!errors)
1442 return errors;
1447 int errors = 0;
1483 errors++;
1486 errors += string_check(buf,
1535 errors++;
1538 errors += string_check(buf, "");
1540 if(errors)
1543 return errors;
1552 int errors = 0;
1555 errors += string_check(buf, "9.000000");
1558 errors += string_check(buf, "9.1");
1561 errors += string_check(buf, "9.10");
1564 errors += string_check(buf, "9");
1567 errors += string_check(buf, "9.100000");
1570 errors += string_check(buf, " 9.100000");
1573 errors += string_check(buf, " 9.100");
1576 errors += string_check(buf, "9.100 ");
1579 errors += string_check(buf, "9.123 ");
1582 errors += string_check(buf, "9.100000");
1585 errors += string_check(buf, " 9.100000");
1588 errors += string_check(buf, "9.100000");
1591 errors += string_check(buf, "9.298765");
1594 errors += string_check(buf, "9.298765");
1597 errors += string_check(buf, "9.298760");
1600 errors += string_check(buf, "9.298765");
1602 errors += string_check(buf, "9.29877");
1604 errors += string_check(buf, "9.2988");
1606 errors += string_check(buf, "9.299");
1608 errors += string_check(buf, "9.30");
1610 errors += string_check(buf, "9.3");
1612 errors += string_check(buf, "9");
1618 errors += strlen_check(buf, 325);
1621 errors += strlen_check(buf, 325);
1625 errors += strlen_check(buf, 325);
1629 errors += string_check(buf, "9.100000");
1634 errors += string_check(buf, " 9.100000");
1636 errors += string_check(buf, " 9.100000");
1639 errors += strlen_check(buf, 317);
1642 errors += strlen_check(buf, 1);
1644 errors += strlen_check(buf, 2);
1646 errors += strlen_check(buf, 3);
1648 errors += strlen_check(buf, 4);
1650 errors += strlen_check(buf, 5);
1652 if(!errors)
1657 return errors;
1663 int errors = 0;
1674 errors += test_weird_arguments();
1676 errors += test_unsigned_short_formatting();
1678 errors += test_signed_short_formatting();
1680 errors += test_unsigned_int_formatting();
1682 errors += test_signed_int_formatting();
1684 errors += test_unsigned_long_formatting();
1686 errors += test_signed_long_formatting();
1688 errors += test_curl_off_t_formatting();
1690 errors += test_string_formatting();
1692 errors += test_float_formatting();
1694 if(errors)