summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2021-05-17 13:49:45 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2021-05-17 13:49:45 +0000
commit53a43e27c0a6d379f45753c862910f862a028258 (patch)
tree4b07f43a567294f3363128dfb23b1bcf53cdaa63
parent97e007684122b8696397176bccf4e76fc8033a8b (diff)
downloadmpfr-53a43e27c0a6d379f45753c862910f862a028258.tar.gz
[tests/tsprintf.c] Commented out a test added in r14524.
This test of length specifier 'P' with an empty precision field (only a period) fails in the 4.1 branch due to an issue fixed only in the trunk (r14155). In the 4.1 branch, the MPFR manual contains contradictory information about this, which can be regarded as unspecified behavior. git-svn-id: https://scm.gforge.inria.fr/anonscm/svn/mpfr/branches/4.1@14525 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r--tests/tsprintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tsprintf.c b/tests/tsprintf.c
index 9cd25e1ef..e5d2323bc 100644
--- a/tests/tsprintf.c
+++ b/tests/tsprintf.c
@@ -255,7 +255,7 @@ decimal (void)
/* specifier 'P' with precision field 0 */
check_vsprintf ("128", "%.Pu", p);
check_vsprintf ("128", "%.0Pd", p);
- check_vsprintf ("", "%.Pu", (mpfr_prec_t) 0);
+ /* check_vsprintf ("", "%.Pu", (mpfr_prec_t) 0); */
check_vsprintf ("", "%.0Pd", (mpfr_prec_t) 0);
mpfr_init (z);