diff options
author | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2020-01-08 14:56:56 +0000 |
---|---|---|
committer | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2020-01-08 14:56:56 +0000 |
commit | 847477b16279104f655f6224a6e35e75a693221f (patch) | |
tree | cf11e13af070a845d86d6b12b80dbd8632571418 /tests/tsprintf.c | |
parent | 7ae2b729731d61abd37fad5031977e19151ab93f (diff) | |
download | mpfr-847477b16279104f655f6224a6e35e75a693221f.tar.gz |
[tests/tsprintf.c] Updated other two tests (in da_DK locale).
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@13645 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tsprintf.c')
-rw-r--r-- | tests/tsprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tsprintf.c b/tests/tsprintf.c index 41a071090..b7c3ac707 100644 --- a/tests/tsprintf.c +++ b/tests/tsprintf.c @@ -929,13 +929,13 @@ locale_da_DK (void) mpfr_set_str (x, "18993474.61279296875", 10, MPFR_RNDN); /* simplest case right justified with thousands separator */ - check_sprintf (" 1,899347461279296875e+07", "%'30Re", x); + check_sprintf ("1,899347461279296875000000000000000000000e+07", "%'30Re", x); check_sprintf (" 1,89935e+07", "%'30Rg", x); check_sprintf (" 18.993.474,61279296875", "%'30.19Rg", x); check_sprintf (" 18.993.474,612793", "%'30Rf", x); /* sign or space, pad, thousands separator with leading zeros */ - check_sprintf (" 000001,899347461279296875E+07", "%' 030RE", x); + check_sprintf (" 1,899347461279296875000000000000000000000E+07", "%' 030RE", x); check_sprintf (" 0000000000000000001,89935E+07", "%' 030RG", x); check_sprintf (" 000000018.993.474,61279296875", "%' 030.19RG", x); check_sprintf (" 00000000000018.993.474,612793", "%' 030RF", x); |