aboutsummaryrefslogtreecommitdiff
path: root/stdlib/tst-strtod-round.c
AgeCommit message (Collapse)AuthorFilesLines
2019-01-01Update copyright dates with scripts/update-copyrights.Joseph Myers1-1/+1
* All files with FSF copyright notices: Update copyright dates using scripts/update-copyrights. * locale/programs/charmap-kw.h: Regenerated. * locale/programs/locfile-kw.h: Likewise.
2018-01-01Update copyright dates with scripts/update-copyrights.Joseph Myers1-1/+1
* All files with FSF copyright notices: Update copyright dates using scripts/update-copyrights. * locale/programs/charmap-kw.h: Regenerated. * locale/programs/locfile-kw.h: Likewise.
2017-01-01Update copyright dates with scripts/update-copyrights.Joseph Myers1-1/+1
2016-08-19Add tst-wcstod-roundPaul E. Murphy1-199/+7
This extends tst-strtod-round with a few trivial changes to also test the wide character variants of strto* using similar macros to other shared tests.
2016-05-25Refactor tst-strtod-round.c for type-generic-nessPaul E. Murphy1-158/+146
Reduce much of the redundancy in this file, and attempt to coral the type specific stuff to ease adding an new type.
2016-05-24Refactor tst-strtod-round.cPaul E. Murphy1-12336/+2
This file is partially generated. To make updates a little simpler, I have moved the generated code into a partially contained header to simplify regeneration. gen-tst-strtod-round.c now takes two, mandatory arguments. These arguments specify the input test data and the output destination, respectively.
2016-01-04Update copyright dates with scripts/update-copyrights.Joseph Myers1-1/+1
2015-04-10Fix strtof decimal rounding close to half least subnormal (bug 18247).Joseph Myers1-0/+4638
Bug 18247 is an off-by-one error in strtof's determination of a decimal exponent such that any value with that decimal exponent is at most half the least subnormal and so the appropriate underflowing value for the rounding mode can be determined with no multiple-precision computations. (Whether the value is in fact safe despite the off-by-one depends on the floating-point format in question. It's wrong for float and for m68k ldbl-96 but not for other supported formats.) This patch corrects the computation of the exponent in question to be safe in general, adding a comment explaining the new computation. Tested for x86_64. [BZ #18247] * stdlib/strtod_l.c (____STRTOF_INTERNAL): Decrease minimum decimal exponent by 1. * stdlib/tst-strtod-round-data: Add more tests. * stdlib/tst-strtod-round.c (tests): Regenerated.
2015-01-02Update copyright dates with scripts/update-copyrights.Joseph Myers1-1/+1
2014-12-30Fix some warnings in the absence of FP round/exception supportChris Metcalf1-1/+1
Due to tile missing a bunch of FP exception and rounding support, the tests generate warnings. These changes fix the warnings by just not compiling some unused functions, and adding some attribute ((unused)) tags.
2014-09-30stdlib/tst-strtod-round.c: Fix build on ARMWill Newton1-0/+3
Building this test on ARM fails because the prototypes for the long double variants of the math functions are unavailable. Add an additional include guard to math.h that enables long double math function declarations if _LIBC_TEST is defined and define _LIBC_TEST in stdlib/tst-strtod-round.c. ChangeLog: 2014-09-30 Will Newton <will.newton@linaro.org> * math/math.h: Define long double math functions if _LIBC_TEST is defined. * stdlib/tst-strtod-round.c: Define _LIBC_TEST.
2014-01-01Update copyright notices with scripts/update-copyrightsAllan McRae1-1/+1
2013-11-13Fix strtod rounding of half the least subnormal (bug 16151).Joseph Myers1-0/+288
2013-06-14Make tst-strtod-round use ROUNDING_TESTS.Joseph Myers1-9/+30
2013-06-13Rework tst-strtod-round handling of inexact results.Joseph Myers1-40/+718
2013-01-02Update copyright notices with scripts/update-copyrights.Joseph Myers1-1/+1
2012-09-12Make strtod respect the rounding mode (bug 14518).Joseph Myers1-29/+104
2012-09-06Fix strtod test for values above maximum for IBM long double.Joseph Myers1-2/+2
2012-09-05Use LDBL_MIN_EXP to distinguish Intel and Motorola extended float formatAndreas Schwab1-16/+12
2012-09-05Correctly handle Motorola extended float format in tst-strtod-roundAndreas Schwab1-17/+478
2012-08-27Fix sign of zero on strtod underflow (bug 14519).Joseph Myers1-0/+104
2012-08-27Fix strtod rounding (bug 3479).Joseph Myers1-0/+6298