Add tests for argp_error and argp_failure with floating-point parameters
commit2c03961fce9213904f67376926c8f2ad1617ffba
authorGabriel F. T. Gomes <gabriel@inconstante.eti.br>
Wed, 13 Jun 2018 01:27:21 +0000 (12 22:27 -0300)
committerGabriel F. T. Gomes <gabriel@inconstante.eti.br>
Tue, 6 Nov 2018 13:19:54 +0000 (6 11:19 -0200)
tree304ad8936edcbb77ca944a499fee2752af082b18
parent6d6ee04622fd77908936250b1f632c2b4388ee78
Add tests for argp_error and argp_failure with floating-point parameters

The functions argp_error and argp_failure, from argp.h, have a format
string as parameter, which can possibly request the printing of
floating-point values.  These values could be of long double type, which
can have different formats, depending on the architecture and on
compilation parameters (for instance, on powerpc, long double values can
have double format (-mlong-double-64) or IBM Extended Precision format
(-mlong-double-128)).

This patch adds tests for argp_error and argp_failure that contain a
format string with double and long double conversion specifiers ('%f'
and '%Lf').  These tests automatically check that the default format of
the long double type works.  A future patch will extend the test for
platforms that can have an optional format for long double.

Tested for powerpc64le.

* argp/Makefile (tests): Add tst-ldbl-argp.
* argp/tst-ldbl-argp.c: New file.
ChangeLog
argp/Makefile
argp/tst-ldbl-argp.c [new file with mode: 0644]