aboutsummaryrefslogtreecommitdiff
path: root/tests/printf
AgeCommit message (Collapse)Author
2014-02-20tolerate negative values of precision in printf, fallback to default precisionAlon Zakai
2014-01-13handle precision -1 in printf .*Alon Zakai
2013-09-19Implement missing 'space' formatting flagRanger Harke
This flag causes space (padding) to be reserved for the sign even if the number is positive. It is basically the same as the 'plus' flag except that a space is displayed instead of a plus sign. The 'plus' flag takes precedence.
2013-09-19Fix bug with forced display of sign on negative integersRanger Harke
The negative sign was displayed twice.
2013-09-19Fix bug with zero-padded negative integersRanger Harke
The zero padding was before the sign. It should be after.
2011-12-08test fixesAlon Zakai
2011-12-08fix for double mode 1 issue with 32-bit floats being NaNs and altering our ↵Alon Zakai
doubles
2011-12-07workaround for i64 mode 1 in printf testAlon Zakai
2011-10-14flush partially-printed lines during shutdownAlon Zakai
2011-07-24Added _formatString() special-case for null values (similar to glibc).max99x
2011-06-28Removed erroneous printf test cases that triggered GCC warnings.max99x
2011-06-28Added proper argument size support to _formatString/printf.max99x
2011-06-28Proper handling of unknown specifiers in _formatString/printf; minor refactor.max99x
2011-06-28Properly padding infinity/NaN in _formatString/printf.max99x
2011-06-28Added support for %n in _formatString/printf.max99x
2011-06-28Replaced brainded float formatting with a much cleaner (and more precise) ↵max99x
version.
2011-06-27Minor printf() bugfix.max99x
2011-06-27Fixed a few boneheaded mistakes; added test for strtod().max99x
2011-06-27Implemented a GCC-alike printf/_formatString.max99x