diff options
author | Gabriel F. T. Gomes <gabriel@inconstante.eti.br> | 2018-08-07 18:06:58 -0300 |
---|---|---|
committer | Gabriel F. T. Gomes <gabriel@inconstante.eti.br> | 2019-03-01 15:32:49 -0300 |
commit | f0eaf86276547f4f1984469b651b3e9968858b85 (patch) | |
tree | 72b2a3ac48eecb7650440a0d64c05ab4e4d7327f /sysdeps/ieee754 | |
parent | d11086a9391b6066458947b80c0d0059b6b461d8 (diff) | |
download | glibc-f0eaf86276547f4f1984469b651b3e9968858b85.tar glibc-f0eaf86276547f4f1984469b651b3e9968858b85.tar.gz glibc-f0eaf86276547f4f1984469b651b3e9968858b85.tar.bz2 glibc-f0eaf86276547f4f1984469b651b3e9968858b85.zip |
ldbl-opt: Reuse test cases from misc/ that check long double
This patch adds test cases for the compatibility versions of the
functions: err, errx, verr, verrx, warn, warnx, vwarn, vwarnx (from
err.h), error, and error_at_line (from error.h), when long double has
the same format as double (-mlong-double-64).
Tested for powerpc, powerpc64 and powerpc64le.
Diffstat (limited to 'sysdeps/ieee754')
-rw-r--r-- | sysdeps/ieee754/ldbl-opt/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sysdeps/ieee754/ldbl-opt/Makefile b/sysdeps/ieee754/ldbl-opt/Makefile index 8a2c129f5f..791a5eabd2 100644 --- a/sysdeps/ieee754/ldbl-opt/Makefile +++ b/sysdeps/ieee754/ldbl-opt/Makefile @@ -189,3 +189,19 @@ $(objpfx)tst-nldbl-argp.c: tst-ldbl-argp.c CFLAGS-tst-nldbl-argp.c += -mlong-double-64 endif + +# Tests for err.h and error.h functions (reusing the relevant tests from +# misc/). +ifeq ($(subdir), misc) +tests-internal += tst-nldbl-warn +tests-internal += tst-nldbl-error + +$(objpfx)tst-nldbl-warn.c: tst-ldbl-warn.c + cp $< $@ + +$(objpfx)tst-nldbl-error.c: tst-ldbl-error.c + cp $< $@ + +CFLAGS-tst-nldbl-warn.c += -mlong-double-64 +CFLAGS-tst-nldbl-error.c += -mlong-double-64 +endif |