From: Gabriel F. T. Gomes Date: Tue, 3 Jul 2018 13:43:13 +0000 (-0300) Subject: ldbl-opt: Reuse argp tests that print long double X-Git-Tag: glibc-2.30~310 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ea2d89d01c2be3e87eced8bb51ce5dc66d09ac35;p=thirdparty%2Fglibc.git ldbl-opt: Reuse argp tests that print long double The test case tst-ldbl-argp checks that the conversion specifier '%Lf' correctly prints long double values with the default long double format for a platform. This patch reuses the test case for long double with the same format as double (-mlong-double-64). Tested for powerpc, powerpc64 and powerpc64le. --- diff --git a/ChangeLog b/ChangeLog index cd1c9a5df8e..80de7958607 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2019-03-01 Gabriel F. T. Gomes + + * sysdeps/ieee754/ldbl-opt/Makefile + [subdir == argp] (tests-internal): Add tst-nldbl-argp. + [subdir == argp] ($(objpfx)tst-nldbl-argp.c): New rule. + [subdir == argp] (CFLAGS-tst-nldbl-argp.c): New variable. + 2019-03-01 Gabriel F. T. Gomes [BZ #23983] diff --git a/sysdeps/ieee754/ldbl-opt/Makefile b/sysdeps/ieee754/ldbl-opt/Makefile index 64fdb8cb9e7..8a2c129f5fc 100644 --- a/sysdeps/ieee754/ldbl-opt/Makefile +++ b/sysdeps/ieee754/ldbl-opt/Makefile @@ -179,3 +179,13 @@ CFLAGS-test-nldbl-redirect.c += -mlong-double-64 $(objpfx)test-nldbl-redirect: $(objpfx)libnldbl_nonshared.a endif + +# Tests for argp.h functions (reusing the relevant tests from argp/) +ifeq ($(subdir),argp) +tests-internal += tst-nldbl-argp + +$(objpfx)tst-nldbl-argp.c: tst-ldbl-argp.c + cp $< $@ + +CFLAGS-tst-nldbl-argp.c += -mlong-double-64 +endif