1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/kernelhwsrv/kerneltest/e32test/math/t_float2.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,557 @@
1.4 +// Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of the License "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// e32test\math\t_float2.cpp
1.18 +// File for T_FLOAT.CPP containing data for test2, test3 and test4
1.19 +// T_FLOAT.CPP split into header files because there seems to be too much static
1.20 +// data for GCC compiler
1.21 +//
1.22 +//
1.23 +
1.24 +#include "t_float.h"
1.25 +
1.26 +GLDEF_D ROUND_TEST testround[]=
1.27 +{
1.28 +{30,0,30},
1.29 +{1.47934,2,1.48},
1.30 +{-72.86345,3,-72.863},
1.31 +{-734.9999,0,-735.0},
1.32 +{4855.9974,1,4856.0},
1.33 +{232478.35,-1,232480.0},
1.34 +{1.0,2,1.00},
1.35 +{.0006,3,0.001},
1.36 +{0.00000012,-1,0.0},
1.37 +{4923.45,-1,4920.0},
1.38 +{0,4,0},
1.39 +{0,0,0},
1.40 +{7493650136.435,-5,7493700000.0},
1.41 +{-34.566732,7,-34.566732},
1.42 +{-36842.6570524,-2,-36800.0},
1.43 +{9,2,9.0},
1.44 +{.0000003,7,.0000003,},
1.45 +{.0000003,6,0.0},
1.46 +{476253405.342,-12,0.0},
1.47 +{.00000000000657,-3,0.0},
1.48 +{0.1,0,0},
1.49 +{9.9,0,10.0},
1.50 +{.0000008,6,.000001},
1.51 +{18.0,0,18.0},
1.52 +{9.1,0,9.0},
1.53 +{9.5,0,10.0},
1.54 +{9.9,0,10.0},
1.55 +{0.9,0,1.0},
1.56 +{0.9,1, 0.9},
1.57 +{0.99,1,1.0}
1.58 +};
1.59 +
1.60 +GLDEF_D TUint size_testround=sizeof(testround);
1.61 +
1.62 +//Added by AnnW
1.63 +GLDEF_D RtoB_TEST testcalc[]=
1.64 + {
1.65 + RtoB_TEST(-1.234E+19,KRealFormatCalculator,20,12,'.',',',0,_S("-1.234E+19")),
1.66 + // NO EXPONENT FORMAT - no triads because triad length==0
1.67 + RtoB_TEST(0,KRealFormatNoExponent,7,5,'.','0',0,_S("0")),
1.68 + RtoB_TEST(0,KRealFormatNoExponent,1,1,'.','0',0,_S("0")),
1.69 + RtoB_TEST(0.00,KRealFormatNoExponent,7,4,'.','0',0,_S("0")),
1.70 + RtoB_TEST(3.000,KRealFormatNoExponent,7,5,'.','0',0,_S("3")),
1.71 + RtoB_TEST(12.9999,KRealFormatNoExponent,6,4,'.','0',0,_S("13")),
1.72 + RtoB_TEST(12.9999,KRealFormatNoExponent,4,4,'.','0',0,_S("13")),
1.73 + RtoB_TEST(123456.0,KRealFormatNoExponent,6,6,'.','0',0,_S("123456")),
1.74 + RtoB_TEST(123456.0,KRealFormatNoExponent,9,6,'.','0',0,_S("123456")),
1.75 + RtoB_TEST(123456.0,KRealFormatNoExponent,10,8,'.',',',0,_S("123456")),
1.76 + RtoB_TEST(123456.0000,KRealFormatNoExponent,16,8,'.',',',0,_S("123456")),
1.77 + RtoB_TEST(123456.789,KRealFormatNoExponent,10,8,'.','0',0,_S("123456.79")),
1.78 + RtoB_TEST(123456.789,KRealFormatNoExponent,11,9,'.',',',0,_S("123456.789")),
1.79 + RtoB_TEST(123456.78900,KRealFormatNoExponent,13,11,'.',',',0,_S("123456.789")),
1.80 + RtoB_TEST(1234567890123.00,KRealFormatNoExponent,18,16,'.',',',0,_S("1234567890123")),
1.81 + RtoB_TEST(1234567890123.00,KRealFormatNoExponent,13,13,'.',',',0,_S("1234567890123")),
1.82 + RtoB_TEST(1234567890123.,KRealFormatNoExponent,20,16,'.','0',0,_S("1234567890123")),
1.83 + RtoB_TEST(.0453,KRealFormatNoExponent,12,10,'.','0',0,_S("0.0453")),
1.84 + RtoB_TEST(.0453,KRealFormatNoExponent,12,1,'.','0',0,_S("0.05")),
1.85 + RtoB_TEST(.00000876,KRealFormatNoExponent,12,10,'.','0',0,_S("0.00000876")),
1.86 + RtoB_TEST(.00000876,KRealFormatNoExponent,12,8,'.','0',0,_S("0.00000876")),
1.87 + RtoB_TEST(.00000876,KRealFormatNoExponent,9,7,'.','0',0,_S("0.0000088")),
1.88 + RtoB_TEST(.00000876,KRealFormatNoExponent,8,6,'.','0',0,_S("0.000009")),
1.89 + RtoB_TEST(.123,KRealFormatNoExponent,7,5,'.','0',0,_S("0.123")),
1.90 + RtoB_TEST(.1230000,KRealFormatNoExponent,7,5,'.','0',0,_S("0.123")),
1.91 + RtoB_TEST(.1230,KRealFormatNoExponent,7,5,'.','0',0,_S("0.123")),
1.92 + RtoB_TEST(.1230,KRealFormatNoExponent,5,4,'.','0',0,_S("0.123")),
1.93 + RtoB_TEST(.1235,KRealFormatNoExponent,6,4,'.','0',0,_S("0.1235")),
1.94 + RtoB_TEST(10000.00,KRealFormatNoExponent,10,7,'.',',',0,_S("10000")),
1.95 + RtoB_TEST(1.0E4,KRealFormatNoExponent,10,7,'.',',',0,_S("10000")),
1.96 + RtoB_TEST(1234.9876,KRealFormatNoExponent,8,8,'.',',',0,_S("1234.988")),
1.97 + RtoB_TEST(-1234.9876,KRealFormatNoExponent,9,8,'.',',',0,_S("-1234.988")),
1.98 + RtoB_TEST(1234.9876E-8,KRealFormatNoExponent,8,8,'.',',',0,_S("0.000012")),
1.99 + RtoB_TEST(-1234.9876E-8,KRealFormatNoExponent,8,7,'.',',',0,_S("-0.00001")),
1.100 + // - no triads because flag set
1.101 + RtoB_TEST(0,noExponentNoTriads,7,5,'.','0',3,_S("0")),
1.102 + RtoB_TEST(3.000,noExponentNoTriads,7,5,'.','0',3,_S("3")),
1.103 + RtoB_TEST(3.000,noExponentNoTriads,1,1,'.','0',3,_S("3")),
1.104 + RtoB_TEST(12.9999,noExponentNoTriads,6,4,'.','0',3,_S("13")),
1.105 + RtoB_TEST(123456.0,noExponentNoTriads,9,6,'.','0',0,_S("123456")), // flag set and length==0
1.106 + RtoB_TEST(123456.0,noExponentNoTriads,10,8,'.',',',3,_S("123456")),
1.107 + RtoB_TEST(123456.0000,noExponentNoTriads,16,8,'.',',',3,_S("123456")),
1.108 + RtoB_TEST(123456.789,noExponentNoTriads,10,8,'.','0',0,_S("123456.79")), // flag set and length==0
1.109 + RtoB_TEST(123456.789,noExponentNoTriads,9,8,'.','0',0,_S("123456.79")), // flag set and length==0
1.110 + RtoB_TEST(123456.789,noExponentNoTriads,11,9,'.',',',3,_S("123456.789")),
1.111 + RtoB_TEST(123456.78900,noExponentNoTriads,13,11,'.',',',0,_S("123456.789")), // flag set and length==0
1.112 + RtoB_TEST(1234567890123.00,noExponentNoTriads,18,16,'.',',',3,_S("1234567890123")),
1.113 + RtoB_TEST(1234567890123.,noExponentNoTriads,20,16,'.','0',0,_S("1234567890123")), // flag set and length==0
1.114 + RtoB_TEST(.0453,noExponentNoTriads,12,10,'.','0',3,_S("0.0453")),
1.115 + RtoB_TEST(.0453,noExponentNoTriads,6,5,'.','0',3,_S("0.0453")),
1.116 + RtoB_TEST(.0453,noExponentNoTriads,5,3,'.','0',3,_S("0.045")),
1.117 + RtoB_TEST(.00000876,noExponentNoTriads,12,10,'.','0',3,_S("0.00000876")),
1.118 + // - UK triad separators
1.119 + RtoB_TEST(0.0,KRealFormatNoExponent,9,6,'.',',',3,_S("0")),
1.120 + RtoB_TEST(.00568,KRealFormatNoExponent,9,3,'.',',',3,_S("0.00568")),
1.121 + RtoB_TEST(12345.0,KRealFormatNoExponent,9,6,'.',',',3,_S("12,345")),
1.122 + RtoB_TEST(12345.669,KRealFormatNoExponent,10,7,'.',',',3,_S("12,345.67")),
1.123 + RtoB_TEST(100000.0,KRealFormatNoExponent,10,8,'.',',',3,_S("100,000")),
1.124 + RtoB_TEST(99999.999,KRealFormatNoExponent,10,7,'.',',',3,_S("100,000")),
1.125 + RtoB_TEST(1234567890.675,KRealFormatNoExponent,17,12,'.',',',3,_S("1,234,567,890.68")),
1.126 + RtoB_TEST(1234567890.675,KRealFormatNoExponent,16,12,'.',',',3,_S("1,234,567,890.68")),
1.127 + RtoB_TEST(1.0E3,KRealFormatNoExponent,10,7,'.',',',3,_S("1,000")),
1.128 + RtoB_TEST(12345.669,KRealFormatNoExponent,8,7,'.',',',3,_S("12,345.7")),
1.129 + // - French Triad separators
1.130 + RtoB_TEST(0.0,KRealFormatNoExponent,10,7,',',' ',4,_S("0")),
1.131 + RtoB_TEST(.00568,KRealFormatNoExponent,10,3,',',' ',4,_S("0,00568")),
1.132 + RtoB_TEST(1.0E3,KRealFormatNoExponent,10,7,',',' ',4,_S("1000")),
1.133 + RtoB_TEST(1234.0,KRealFormatNoExponent,10,7,',',' ',4,_S("1234")),
1.134 + RtoB_TEST(12345.0,KRealFormatNoExponent,9,6,',',' ',4,_S("12 345")),
1.135 + RtoB_TEST(12345.669,KRealFormatNoExponent,9,7,',',' ',4,_S("12 345,67")),
1.136 + RtoB_TEST(100000.0,KRealFormatNoExponent,10,8,',',' ',4,_S("100 000")),
1.137 + RtoB_TEST(100000.0,KRealFormatNoExponent,7,6,',',' ',4,_S("100 000")),
1.138 + RtoB_TEST(99999.999,KRealFormatNoExponent,10,7,',',' ',4,_S("100 000")),
1.139 + RtoB_TEST(1234567890.675,KRealFormatNoExponent,16,12,',',' ',4,_S("1 234 567 890,68")),
1.140 + // '.' as triad separator, and ',' as decimal point
1.141 + RtoB_TEST(1234.0,KRealFormatNoExponent,10,8,',','.',3,_S("1.234")),
1.142 + RtoB_TEST(0.0,KRealFormatNoExponent,10,8,',','.',3,_S("0")),
1.143 + RtoB_TEST(.00568,KRealFormatNoExponent,10,3,',','.',3,_S("0,00568")),
1.144 + RtoB_TEST(1.0E3,KRealFormatNoExponent,10,6,',','.',3,_S("1.000")),
1.145 + RtoB_TEST(12345.669,KRealFormatNoExponent,10,7,',','.',3,_S("12.345,67")),
1.146 + RtoB_TEST(12345.669,KRealFormatNoExponent,9,7,',','.',3,_S("12.345,67")),
1.147 + RtoB_TEST(12345.67,KRealFormatNoExponent,9,7,',','.',4,_S("12.345,67")),
1.148 + RtoB_TEST(1234567890.675,KRealFormatNoExponent,16,12,',','.',3,_S("1.234.567.890,68")),
1.149 + // Limited
1.150 + RtoB_TEST(1.23456789012501,noExponentLimit,32,15,'.',',',3,_S("1.23456789013")),
1.151 + RtoB_TEST(1.2345678901249,noExponentLimit,32,15,'.',',',3,_S("1.23456789012")),
1.152 + RtoB_TEST(1.99999999996,noExponentLimit,32,15,'.',',',3,_S("1.99999999996")),
1.153 + RtoB_TEST(1.999999999996,noExponentLimit,32,15,'.',',',3,_S("2")),
1.154 + RtoB_TEST(1.9999999999996,noExponentLimit,32,15,'.',',',3,_S("2")),
1.155 + RtoB_TEST(1.99999999999996,noExponentLimit,32,15,'.',',',3,_S("2")),
1.156 + // Calc setting - no triads and space for sign, width=14, dp=12
1.157 + RtoB_TEST(1.234567890123,noExponentCalc,14,12,'.',',',3,_S("1.23456789012")),
1.158 + RtoB_TEST(1.234567890129,noExponentCalc,14,12,'.',',',3,_S("1.23456789013")),
1.159 + RtoB_TEST(-1.234567890123,noExponentCalc,14,12,'.',',',3,_S("-1.23456789012")),
1.160 + RtoB_TEST(-1.234567890129,noExponentCalc,14,12,'.',',',3,_S("-1.23456789013")),
1.161 + RtoB_TEST(123456789012.00,noExponentCalc,14,12,'.',',',0,_S("123456789012")),
1.162 + RtoB_TEST(999999999999.00,noExponentCalc,14,12,'.',',',0,_S("999999999999")),
1.163 + //
1.164 + // CALCULATOR format
1.165 + // No Exponent format
1.166 + RtoB_TEST(1.234E-8,KRealFormatCalculator,20,12,'.',',',0,_S("0.00000001234")),
1.167 + RtoB_TEST(1.234E-7,KRealFormatCalculator,20,12,'.',',',0,_S("0.0000001234")),
1.168 + RtoB_TEST(1.234E-6,KRealFormatCalculator,20,12,'.',',',0,_S("0.000001234")),
1.169 + RtoB_TEST(1.234E-3,KRealFormatCalculator,20,12,'.',',',0,_S("0.001234")),
1.170 + RtoB_TEST(1.234E-2,KRealFormatCalculator,20,12,'.',',',0,_S("0.01234")),
1.171 + RtoB_TEST(1E-11,KRealFormatCalculator,20,12,'.',',',0,_S("0.00000000001")),
1.172 + RtoB_TEST(1.2E-10,KRealFormatCalculator,20,12,'.',',',0,_S("0.00000000012")),
1.173 + RtoB_TEST(1.23E-9,KRealFormatCalculator,20,12,'.',',',0,_S("0.00000000123")),
1.174 + RtoB_TEST(1.234E-8,KRealFormatCalculator,20,12,'.',',',0,_S("0.00000001234")),
1.175 + RtoB_TEST(1.2345E-7,KRealFormatCalculator,20,12,'.',',',0,_S("0.00000012345")),
1.176 + RtoB_TEST(1.23456E-6,KRealFormatCalculator,20,12,'.',',',0,_S("0.00000123456")),
1.177 + RtoB_TEST(1.234567E-5,KRealFormatCalculator,20,12,'.',',',0,_S("0.00001234567")),
1.178 + RtoB_TEST(1.2345678E-4,KRealFormatCalculator,20,12,'.',',',0,_S("0.00012345678")),
1.179 + RtoB_TEST(1.23456789E-3,KRealFormatCalculator,20,12,'.',',',0,_S("0.00123456789")),
1.180 + RtoB_TEST(1.234567891E-2,KRealFormatCalculator,20,12,'.',',',0,_S("0.01234567891")),
1.181 + RtoB_TEST(1.2345678912E-1,KRealFormatCalculator,20,12,'.',',',0,_S("0.12345678912")),
1.182 + RtoB_TEST(1.23456789123E0,KRealFormatCalculator,20,12,'.',',',0,_S("1.23456789123")),
1.183 + //
1.184 + RtoB_TEST(0.000,KRealFormatCalculator,10,4,'.','0',0,_S("0")),
1.185 + RtoB_TEST(98.000,KRealFormatCalculator,10,4,'.','0',0,_S("98")),
1.186 + RtoB_TEST(12345.6700009,KRealFormatCalculator,17,11,'.','0',3,_S("12345.670001")),
1.187 + RtoB_TEST(1.E2,KRealFormatCalculator,10,4,'.','0',0,_S("100")),
1.188 + RtoB_TEST(1234.0,KRealFormatCalculator,10,4,'.','0',3,_S("1234")),
1.189 + RtoB_TEST(1.2345,KRealFormatCalculator,10,3,'.','0',0,_S("1.23")),
1.190 + RtoB_TEST(1.235,KRealFormatCalculator,9,3,'.','0',0,_S("1.24")),
1.191 + RtoB_TEST(98765.0,KRealFormatCalculator,13,6,'.','0',0,_S("98765")),
1.192 + RtoB_TEST(100000000.0,KRealFormatCalculator,15,9,'.','0',0,_S("100000000")),
1.193 + RtoB_TEST(123.098785E00,KRealFormatCalculator,15,9,'.','0',0,_S("123.098785")),
1.194 + RtoB_TEST(-123.098785E00,KRealFormatCalculator,15,8,'.','0',0,_S("-123.09879")),
1.195 + RtoB_TEST(1234.9876E-4,KRealFormatCalculator,15,9,'.','0',0,_S("0.12349876")),
1.196 + RtoB_TEST(1234.9876E-5,KRealFormatCalculator,16,10,'.','0',0,_S("0.012349876")),
1.197 + RtoB_TEST(0.0099,KRealFormatCalculator,11,5,'.','0',0,_S("0.0099")),
1.198 + RtoB_TEST(0.099,KRealFormatCalculator,10,4,'.','0',0,_S("0.099")),
1.199 + RtoB_TEST(0.001209,KRealFormatCalculator,15,7,'.','0',0,_S("0.001209")),
1.200 + RtoB_TEST(0.00100987,KRealFormatCalculator,15,9,'.','0',0,_S("0.00100987")),
1.201 + RtoB_TEST(0.678,KRealFormatCalculator,10,4,'.','0',0,_S("0.678")),
1.202 + RtoB_TEST(99999.0,KRealFormatCalculator,12,6,'.','0',0,_S("99999")),
1.203 + RtoB_TEST(12345678901234567890.0,KRealFormatCalculator,20,12,'.','0',0,_S("1.23456789012E+19")),
1.204 + RtoB_TEST(1234567890123.0,KRealFormatCalculator,13,7,'.','0',0,_S("1.234568E+12")),
1.205 + // Initially the format type is exponent, but after rounding it is changed to fixed
1.206 + RtoB_TEST(0.00099999,KRealFormatCalculator,10,4,'.','0',0,_S("0.001")),
1.207 + // Exponent format, two digit exponent only
1.208 + RtoB_TEST(1.23412341234E-11,KRealFormatCalculator,20,12,'.',',',0,_S("1.23412341234E-11")),
1.209 + RtoB_TEST(1.23412341234E-8,KRealFormatCalculator,20,12,'.',',',0,_S("1.23412341234E-08")),
1.210 + RtoB_TEST(1.23412341234E-7,KRealFormatCalculator,20,12,'.',',',0,_S("1.23412341234E-07")),
1.211 + RtoB_TEST(1.23412341234E-6,KRealFormatCalculator,20,12,'.',',',0,_S("1.23412341234E-06")),
1.212 + RtoB_TEST(1.23412341234E-3,KRealFormatCalculator,20,12,'.',',',0,_S("1.23412341234E-03")),
1.213 + RtoB_TEST(1.23412341234E-2,KRealFormatCalculator,20,12,'.',',',0,_S("1.23412341234E-02")),
1.214 + RtoB_TEST(1.23412341234123E-7,KRealFormatCalculator,20,12,'.',',',0,_S("1.23412341234E-07")),
1.215 + RtoB_TEST(1.234E-11,KRealFormatCalculator,20,12,'.',',',0,_S("1.234E-11")),
1.216 + RtoB_TEST(1.234E-9,KRealFormatCalculator,20,12,'.',',',0,_S("1.234E-09")),
1.217 + //
1.218 + RtoB_TEST(10000000.0,KRealFormatCalculator,13,7,'.','0',0,_S("1E+07")),
1.219 + RtoB_TEST(0.001209,KRealFormatCalculator,11,5,'.','0',0,_S("1.209E-03")),
1.220 + RtoB_TEST(0.00100987,KRealFormatCalculator,12,6,'.','0',0,_S("1.00987E-03")),
1.221 + RtoB_TEST(0.00099999109,KRealFormatCalculator,13,7,'.','0',0,_S("9.999911E-04")),
1.222 + RtoB_TEST(0.0000678,KRealFormatCalculator,9,3,'.','0',0,_S("6.78E-05")),
1.223 + RtoB_TEST(1234567.8765E12,KRealFormatCalculator,11,5,'.','0',0,_S("1.2346E+18")),
1.224 + RtoB_TEST(123.098785E56,KRealFormatCalculator,13,7,'.','0',0,_S("1.230988E+58")),
1.225 + RtoB_TEST(0.0000001234,KRealFormatCalculator,10,4,'.','0',0,_S("1.234E-07")),
1.226 + RtoB_TEST(.99999999E99,KRealFormatCalculator,12,6,'.','0',0,_S("1E+99")),
1.227 + RtoB_TEST(1.0E99,KRealFormatCalculator,12,6,'.','0',0,_S("1E+99")),
1.228 + RtoB_TEST(.00000000001,KRealFormatCalculator,12,6,'.','0',0,_S("1E-11")),
1.229 + RtoB_TEST(5384795.26E-52,KRealFormatCalculator,13,7,'.','0',0,_S("5.384795E-46")),
1.230 + RtoB_TEST(123.098785E-87,KRealFormatCalculator,13,7,'.','0',0,_S("1.230988E-85")),
1.231 + RtoB_TEST(.99999999E-99,KRealFormatCalculator,12,6,'.','0',0,_S("1E-99")),
1.232 + RtoB_TEST(1.0E-99,KRealFormatCalculator,12,6,'.','0',0,_S("1E-99")),
1.233 + //
1.234 + RtoB_TEST(1E-12,KRealFormatCalculator,20,12,'.',',',0,_S("1E-12")),
1.235 + RtoB_TEST(1.2E-11,KRealFormatCalculator,20,12,'.',',',0,_S("1.2E-11")),
1.236 + RtoB_TEST(1.23E-10,KRealFormatCalculator,20,12,'.',',',0,_S("1.23E-10")),
1.237 + RtoB_TEST(1.234E-9,KRealFormatCalculator,20,12,'.',',',0,_S("1.234E-09")),
1.238 + RtoB_TEST(1.2345E-8,KRealFormatCalculator,20,12,'.',',',0,_S("1.2345E-08")),
1.239 + RtoB_TEST(1.23456E-7,KRealFormatCalculator,20,12,'.',',',0,_S("1.23456E-07")),
1.240 + RtoB_TEST(1.234567E-6,KRealFormatCalculator,20,12,'.',',',0,_S("1.234567E-06")),
1.241 + RtoB_TEST(1.2345678E-5,KRealFormatCalculator,20,12,'.',',',0,_S("1.2345678E-05")),
1.242 + RtoB_TEST(1.23456789E-4,KRealFormatCalculator,20,12,'.',',',0,_S("1.23456789E-04")),
1.243 + RtoB_TEST(1.234567891E-3,KRealFormatCalculator,20,12,'.',',',0,_S("1.234567891E-03")),
1.244 + RtoB_TEST(1.2345678912E-2,KRealFormatCalculator,20,12,'.',',',0,_S("1.2345678912E-02")),
1.245 + RtoB_TEST(1.23456789123E-1,KRealFormatCalculator,20,12,'.',',',0,_S("1.23456789123E-01")),
1.246 + RtoB_TEST(1.234567891234,KRealFormatCalculator,20,12,'.',',',0,_S("1.23456789123")),
1.247 + // Exponent format, three-digit exponents allowed
1.248 + RtoB_TEST(9999999.0,calculatorThreeDigitExp,11,4,'.','0',0,_S("1E+07")),
1.249 + RtoB_TEST(1234567890123.0,calculatorThreeDigitExp,20,13,'.','0',0,_S("1234567890123")), // Leave room for three-digit exponent, so can have fixed numbers one digit longer
1.250 + RtoB_TEST(1234567.8765E12,calculatorThreeDigitExp,13,6,'.','0',0,_S("1.23457E+18")),
1.251 + RtoB_TEST(123.098785E56,calculatorThreeDigitExp,14,7,'.','0',0,_S("1.230988E+58")),
1.252 + RtoB_TEST(.99999999E99,calculatorThreeDigitExp,13,6,'.','0',0,_S("1E+99")),
1.253 + RtoB_TEST(1.0E99,calculatorThreeDigitExp,13,6,'.','0',0,_S("1E+99")),
1.254 + RtoB_TEST(.000000000001,calculatorThreeDigitExp,13,6,'.','0',0,_S("1E-12")),
1.255 + RtoB_TEST(5384795.26E-52,calculatorThreeDigitExp,14,7,'.','0',0,_S("5.384795E-46")),
1.256 + RtoB_TEST(.99999999E-99,calculatorThreeDigitExp,13,6,'.','0',0,_S("1E-99")),
1.257 + RtoB_TEST(1.0E-99,calculatorThreeDigitExp,13,6,'.','0',0,_S("1E-99")),
1.258 + RtoB_TEST(1234.9876E-103,calculatorThreeDigitExp,13,6,'.','0',0,_S("1.23499E-100")),
1.259 + RtoB_TEST(1234.9876E-107,calculatorThreeDigitExp,15,8,'.','0',0,_S("1.2349876E-104")),
1.260 + RtoB_TEST(1234.9876E-109,calculatorThreeDigitExp,15,8,'.','0',0,_S("1.2349876E-106")),
1.261 + RtoB_TEST(1234.9876E-110,calculatorThreeDigitExp,16,9,'.','0',0,_S("1.2349876E-107")),
1.262 + RtoB_TEST(1234.9876E-200,calculatorThreeDigitExp,17,10,'.','0',0,_S("1.2349876E-197")),
1.263 + RtoB_TEST(1234.9876E-300,calculatorThreeDigitExp,17,10,'.','0',0,_S("1.2349876E-297")),
1.264 + RtoB_TEST(1234.9876E97,calculatorThreeDigitExp,13,6,'.','0',0,_S("1.23499E+100")),
1.265 + RtoB_TEST(1234.9876E100,calculatorThreeDigitExp,15,8,'.','0',0,_S("1.2349876E+103")),
1.266 + RtoB_TEST(1234.9876E103,calculatorThreeDigitExp,15,8,'.','0',0,_S("1.2349876E+106")),
1.267 + RtoB_TEST(1234.9876E200,calculatorThreeDigitExp,16,9,'.','0',0,_S("1.2349876E+203")),
1.268 + RtoB_TEST(1234.9876E300,calculatorThreeDigitExp,17,10,'.','0',0,_S("1.2349876E+303")),
1.269 + //
1.270 + RtoB_TEST(1.2E+100,calculatorThreeDigitExp,8,1,'.','0',0,_S("1E+100")),
1.271 + RtoB_TEST(1.2E-100,calculatorThreeDigitExp,8,1,'.','0',0,_S("1E-100")),
1.272 + RtoB_TEST(-1.2E+100,calculatorThreeDigitExp,8,1,'.','0',0,_S("-1E+100")),
1.273 + RtoB_TEST(-1.2E-100,calculatorThreeDigitExp,8,1,'.','0',0,_S("-1E-100")),
1.274 + RtoB_TEST(1.2E+100,calculatorThreeDigitExp,9,2,'.','0',0,_S("1.2E+100")),
1.275 + RtoB_TEST(1.2E-100,calculatorThreeDigitExp,9,2,'.','0',0,_S("1.2E-100")),
1.276 + RtoB_TEST(-1.2E+100,calculatorThreeDigitExp,9,2,'.','0',0,_S("-1.2E+100")),
1.277 + RtoB_TEST(-1.2E-100,calculatorThreeDigitExp,9,2,'.','0',0,_S("-1.2E-100")),
1.278 + RtoB_TEST(1E+100,calculatorThreeDigitExp,9,2,'.','0',0,_S("1E+100")),
1.279 + RtoB_TEST(1E-100,calculatorThreeDigitExp,9,2,'.','0',0,_S("1E-100")),
1.280 + RtoB_TEST(-1E+100,calculatorThreeDigitExp,9,2,'.','0',0,_S("-1E+100")),
1.281 + RtoB_TEST(-1E-100,calculatorThreeDigitExp,9,2,'.','0',0,_S("-1E-100")),
1.282 + RtoB_TEST(1E+100,calculatorThreeDigitExp,8,1,'.','0',0,_S("1E+100")),
1.283 + RtoB_TEST(1E-100,calculatorThreeDigitExp,8,1,'.','0',0,_S("1E-100")),
1.284 + RtoB_TEST(-1E+100,calculatorThreeDigitExp,8,1,'.','0',0,_S("-1E+100")),
1.285 + RtoB_TEST(-1E-100,calculatorThreeDigitExp,8,1,'.','0',0,_S("-1E-100")),
1.286 + //
1.287 + RtoB_TEST(1.4E+308,calculatorThreeDigitExp,8,1,'.','0',0,_S("1E+308")),
1.288 + RtoB_TEST(2.3E-308,calculatorThreeDigitExp,8,1,'.','0',0,_S("2E-308")),
1.289 + RtoB_TEST(-1.4E+308,calculatorThreeDigitExp,8,1,'.','0',0,_S("-1E+308")),
1.290 + RtoB_TEST(-2.3E-308,calculatorThreeDigitExp,8,1,'.','0',0,_S("-2E-308")),
1.291 + RtoB_TEST(1.7E+308,calculatorThreeDigitExp,9,2,'.','0',0,_S("1.7E+308")),
1.292 + RtoB_TEST(2.3E-308,calculatorThreeDigitExp,10,3,'.','0',0,_S("2.3E-308")),
1.293 + RtoB_TEST(-1.7E+308,calculatorThreeDigitExp,10,3,'.','0',0,_S("-1.7E+308")),
1.294 + RtoB_TEST(-2.3E-308,calculatorThreeDigitExp,9,2,'.','0',0,_S("-2.3E-308")),
1.295 + RtoB_TEST(1.797693E+308,calculatorThreeDigitExp,15,7,'.','0',0,_S("1.797693E+308")),
1.296 + RtoB_TEST(2.225074E-308,calculatorThreeDigitExp,16,8,'.','0',0,_S("2.225074E-308")),
1.297 + RtoB_TEST(-1.797693E+308,calculatorThreeDigitExp,16,8,'.','0',0,_S("-1.797693E+308")),
1.298 + RtoB_TEST(-2.225074E-308,calculatorThreeDigitExp,16,7,'.','0',0,_S("-2.225074E-308")),
1.299 + // Limited
1.300 + RtoB_TEST(1.23456789012501E24,calculatorLimit,21,15,'.',',',3,_S("1.23456789013E+24")),
1.301 + RtoB_TEST(1.2345678901249E+97,calculatorLimit,32,15,'.',',',3,_S("1.23456789012E+97")),
1.302 + RtoB_TEST(1.99999999996E-19,calculatorLimit,21,15,'.',',',3,_S("1.99999999996E-19")),
1.303 + RtoB_TEST(1.999999999996E-53,calculatorLimit,32,15,'.',',',3,_S("2E-53")),
1.304 + RtoB_TEST(1.9999999999996E+46,calculatorLimit,32,15,'.',',',3,_S("2E+46")),
1.305 + //
1.306 + RtoB_TEST(1.23456789012501,calculatorLimit,32,15,'.',',',3,_S("1.23456789013")),
1.307 + RtoB_TEST(1.2345678901249,calculatorLimit,32,15,'.',',',3,_S("1.23456789012")),
1.308 + RtoB_TEST(1.99999999996,calculatorLimit,32,15,'.',',',3,_S("1.99999999996")),
1.309 + RtoB_TEST(1.999999999996,calculatorLimit,32,15,'.',',',3,_S("2")),
1.310 + RtoB_TEST(1.9999999999996,calculatorLimit,32,15,'.',',',3,_S("2")),
1.311 + RtoB_TEST(1.99999999999996,calculatorLimit,32,15,'.',',',3,_S("2")),
1.312 + //
1.313 + RtoB_TEST(1.23456789012501E24,calculatorLimitAndThreeDigExp,22,15,'.',',',3,_S("1.23456789013E+24")),
1.314 + RtoB_TEST(1.2345678901249E+197,calculatorLimitAndThreeDigExp,32,15,'.',',',3,_S("1.23456789012E+197")),
1.315 + RtoB_TEST(1.99999999996E-19,calculatorLimitAndThreeDigExp,22,15,'.',',',3,_S("1.99999999996E-19")),
1.316 + RtoB_TEST(1.999999999996E-153,calculatorLimitAndThreeDigExp,32,15,'.',',',3,_S("2E-153")),
1.317 + RtoB_TEST(1.9999999999996E+246,calculatorLimitAndThreeDigExp,32,15,'.',',',3,_S("2E+246")),
1.318 + RtoB_TEST(1.99999999999996E-302,calculatorLimitAndThreeDigExp,32,15,'.',',',3,_S("2E-302")),
1.319 +
1.320 + // new - exponent with significant figures
1.321 + RtoB_TEST(10000000.0,exponentSigFigs,13,7,'.','0',0,_S("1E+07")),
1.322 + RtoB_TEST(9999999.0,exponentSigFigs,12,6,'.','0',0,_S("1E+07")),
1.323 + RtoB_TEST(1234567890123.0,exponentSigFigs,13,7,'.','0',0,_S("1.234568E+12")),
1.324 + RtoB_TEST(1234567.8765E12,exponentSigFigs,11,5,'.','0',0,_S("1.2346E+18")),
1.325 + RtoB_TEST(123.098785E56,exponentSigFigs,13,7,'.','0',0,_S("1.230988E+58")),
1.326 + RtoB_TEST(0.0000678,exponentSigFigs,9,3,'.','0',0,_S("6.78E-05")),
1.327 + RtoB_TEST(0.0000001234,exponentSigFigs,10,4,'.','0',0,_S("1.234E-07")),
1.328 + RtoB_TEST(.99999999E99,exponentSigFigs,12,6,'.','0',0,_S("1E+99")),
1.329 + RtoB_TEST(1.0E99,exponentSigFigs,12,6,'.','0',0,_S("1E+99")),
1.330 + RtoB_TEST(.0000000001,exponentSigFigs,12,6,'.','0',0,_S("1E-10")),
1.331 + RtoB_TEST(5384795.26E-52,exponentSigFigs,13,7,'.','0',0,_S("5.384795E-46")),
1.332 + RtoB_TEST(123.098785E-87,exponentSigFigs,13,7,'.','0',0,_S("1.230988E-85")),
1.333 + RtoB_TEST(.99999999E-99,exponentSigFigs,12,6,'.','0',0,_S("1E-99")),
1.334 + RtoB_TEST(1.0E-99,exponentSigFigs,12,6,'.','0',0,_S("1E-99")),
1.335 + // three-digit exponents allowed
1.336 + RtoB_TEST(9999999.0,exponentThreeDigitExpAndSigFigs,11,4,'.','0',0,_S("1E+07")),
1.337 + RtoB_TEST(1234567.8765E12,exponentThreeDigitExpAndSigFigs,13,6,'.','0',0,_S("1.23457E+18")),
1.338 + RtoB_TEST(123.098785E56,exponentThreeDigitExpAndSigFigs,14,7,'.','0',0,_S("1.230988E+58")),
1.339 + RtoB_TEST(.99999999E99,exponentThreeDigitExpAndSigFigs,13,6,'.','0',0,_S("1E+99")),
1.340 + RtoB_TEST(1.0E99,exponentThreeDigitExpAndSigFigs,13,6,'.','0',0,_S("1E+99")),
1.341 + RtoB_TEST(.0000000001,exponentThreeDigitExpAndSigFigs,13,6,'.','0',0,_S("1E-10")),
1.342 + RtoB_TEST(5384795.26E-52,exponentThreeDigitExpAndSigFigs,14,7,'.','0',0,_S("5.384795E-46")),
1.343 + RtoB_TEST(.99999999E-99,exponentThreeDigitExpAndSigFigs,13,6,'.','0',0,_S("1E-99")),
1.344 + RtoB_TEST(1.0E-99,exponentThreeDigitExpAndSigFigs,13,6,'.','0',0,_S("1E-99")),
1.345 + RtoB_TEST(1234.9876E-103,exponentThreeDigitExpAndSigFigs,13,6,'.','0',0,_S("1.23499E-100")),
1.346 + RtoB_TEST(1234.9876E-107,exponentThreeDigitExpAndSigFigs,15,8,'.','0',0,_S("1.2349876E-104")),
1.347 + RtoB_TEST(1234.9876E-109,exponentThreeDigitExpAndSigFigs,15,8,'.','0',0,_S("1.2349876E-106")),
1.348 + RtoB_TEST(1234.9876E-110,exponentThreeDigitExpAndSigFigs,16,9,'.','0',0,_S("1.2349876E-107")),
1.349 + RtoB_TEST(1234.9876E-200,exponentThreeDigitExpAndSigFigs,17,10,'.','0',0,_S("1.2349876E-197")),
1.350 + RtoB_TEST(1234.9876E-300,exponentThreeDigitExpAndSigFigs,17,10,'.','0',0,_S("1.2349876E-297")),
1.351 + RtoB_TEST(1234.9876E97,exponentThreeDigitExpAndSigFigs,13,6,'.','0',0,_S("1.23499E+100")),
1.352 + RtoB_TEST(1234.9876E100,exponentThreeDigitExpAndSigFigs,15,8,'.','0',0,_S("1.2349876E+103")),
1.353 + RtoB_TEST(1234.9876E103,exponentThreeDigitExpAndSigFigs,15,8,'.','0',0,_S("1.2349876E+106")),
1.354 + RtoB_TEST(1234.9876E200,exponentThreeDigitExpAndSigFigs,16,9,'.','0',0,_S("1.2349876E+203")),
1.355 + RtoB_TEST(1234.9876E300,exponentThreeDigitExpAndSigFigs,17,10,'.','0',0,_S("1.2349876E+303"))
1.356 + };
1.357 +
1.358 +GLDEF_D TUint size_testcalc=sizeof(testcalc);
1.359 +
1.360 +GLDEF_D ERR_TEST testerr[]=
1.361 + {
1.362 + // FIXED - special values
1.363 + ERR_TEST(KPosInfTReal64,fixedNoTriads,32,4,'.','0',0,_S("Inf"),KErrOverflow),
1.364 + ERR_TEST(KNegInfTReal64,fixedNoTriads,32,4,'.','0',0,_S("-Inf"),KErrOverflow),
1.365 + ERR_TEST(KNaNTReal64,fixedNoTriads,32,4,'.','0',0,_S("NaN"),KErrArgument),
1.366 + ERR_TEST(K1EMinus324Real64,fixedNoTriads,32,4,'.','0',0,_S("0.0000"),6),
1.367 + // - no space for sign and no triads - does not fit
1.368 + ERR_TEST(1234.9876E95,fixedNoTriads,12,0,'.','0',0,_S("Inf"),KErrOverflow),
1.369 + ERR_TEST(-1234.9876E95,fixedNoTriads,12,0,'.','0',0,_S("-Inf"),KErrOverflow),
1.370 + ERR_TEST(1234.9876,fixedNoTriads,8,4,'.','0',0,_S("Inf"),KErrOverflow),
1.371 + ERR_TEST(1234.9876E-8,fixedNoTriads,3,7,'.','0',0),
1.372 + ERR_TEST(1234.9876E-8,fixedNoTriads,8,7,'.','0',0),
1.373 + // - no space for sign and triads - does not fit
1.374 + ERR_TEST(1234.9876E-8,KRealFormatFixed,10,10,'.','0',0),
1.375 + ERR_TEST(1234.9876E-107,KRealFormatFixed,12,11,'.','0',0),
1.376 + ERR_TEST(1234.9876E-109,KRealFormatFixed,12,11,'.','0',0),
1.377 + ERR_TEST(1234.9876E-110,KRealFormatFixed,12,11,'.','0',0),
1.378 + ERR_TEST(1234.9876E-200,KRealFormatFixed,12,11,'.','0',0),
1.379 + ERR_TEST(1234.9876E-300,KRealFormatFixed,12,11,'.','0',0),
1.380 + //
1.381 + ERR_TEST(1234.9876E4,KRealFormatFixed,8,0,'.',',',3,_S("Inf"),KErrOverflow),
1.382 + ERR_TEST(1234.9876E4,KRealFormatFixed,9,0,'.',',',3,_S("Inf"),KErrOverflow),
1.383 + ERR_TEST(1234.9876E95,KRealFormatFixed,12,6,'.','0',0,_S("Inf"),KErrOverflow),
1.384 + ERR_TEST(1234.9876E96,KRealFormatFixed,12,6,'.','0',0,_S("Inf"),KErrOverflow),
1.385 + ERR_TEST(1234.9876E97,KRealFormatFixed,12,6,'.','0',0,_S("Inf"),KErrOverflow),
1.386 + ERR_TEST(1234.9876E100,KRealFormatFixed,12,6,'.','0',0,_S("Inf"),KErrOverflow),
1.387 + ERR_TEST(1234.9876E103,KRealFormatFixed,12,6,'.','0',0,_S("Inf"),KErrOverflow),
1.388 + ERR_TEST(1234.9876E200,KRealFormatFixed,12,6,'.','0',0,_S("Inf"),KErrOverflow),
1.389 + ERR_TEST(1234.9876E300,KRealFormatFixed,12,6,'.','0',0,_S("Inf"),KErrOverflow),
1.390 + // - space for sign and no triads - does not fit
1.391 + ERR_TEST(1234.9876,fixedSpaceForSign,9,4,'.','0',0,_S("Inf"),KErrOverflow),
1.392 + ERR_TEST(1234.9876E-8,fixedSpaceForSign,11,9,'.','0',0),
1.393 + // - space for sign and triads - does not fit
1.394 + ERR_TEST(1234.9876E4,fixedTriadsAndSign,9,0,'.',',',3,_S("Inf"),KErrOverflow),
1.395 + ERR_TEST(1234.9876E4,fixedTriadsAndSign,10,0,'.',',',3,_S("Inf"),KErrOverflow),
1.396 + // - no error, returns length
1.397 + ERR_TEST(1234.9876,fixedNoTriads,9,4,'.','0',0,_S("1234.9876"),9),
1.398 + ERR_TEST(1234.9876E4,KRealFormatFixed,11,0,'.',',',3,_S("12,349,876"),10),
1.399 + ERR_TEST(1234.9876,fixedSpaceForSign,10,4,'.','0',0,_S("1234.9876"),9),
1.400 + ERR_TEST(-1234.9876,fixedSpaceForSign,10,4,'.','0',0,_S("-1234.9876"),10),
1.401 + ERR_TEST(1234.9876E4,fixedTriadsAndSign,12,0,'.',',',3,_S("12,349,876"),10),
1.402 + ERR_TEST(1234.9876E-101,KRealFormatFixed,12,6,'.','0',0,_S("0.000000"),8),
1.403 + ERR_TEST(1234.9876E-102,KRealFormatFixed,12,6,'.','0',0,_S("0.000000"),8),
1.404 + ERR_TEST(1234.9876E-103,KRealFormatFixed,12,6,'.','0',0,_S("0.000000"),8),
1.405 +
1.406 + // EXPONENT - special values
1.407 + ERR_TEST(KPosInfTReal64,KRealFormatExponent,32,6,'.','0',0,_S("Inf"),KErrOverflow),
1.408 + ERR_TEST(KNegInfTReal64,KRealFormatExponent,32,6,'.','0',0,_S("-Inf"),KErrOverflow),
1.409 + ERR_TEST(KNaNTReal64,KRealFormatExponent,32,6,'.','0',0,_S("NaN"),KErrArgument),
1.410 + ERR_TEST(K5EMinus324Real64,exponentThreeDigitExp,32,6,'.',',',0,_S("4.940656E-324"),13),
1.411 + ERR_TEST(K1EMinus324Real64,KRealFormatExponent,32,6,'.','0',0,_S("0.000000E+00"),12),
1.412 + // - only two digits allowed - underflow
1.413 + ERR_TEST(1234.9876E-103,KRealFormatExponent,12,6,'.','0',0,_S("0"),KErrUnderflow),
1.414 + ERR_TEST(1234.9876E-110,KRealFormatExponent,12,6,'.','0',0,_S("0"),KErrUnderflow),
1.415 + ERR_TEST(1234.9876E-200,KRealFormatExponent,12,6,'.','0',0,_S("0"),KErrUnderflow),
1.416 + ERR_TEST(1234.9876E-300,KRealFormatExponent,12,6,'.','0',0,_S("0"),KErrUnderflow),
1.417 + // - overflow
1.418 + ERR_TEST(1234.9876E97,KRealFormatExponent,12,6,'.','0',0,_S("Inf"),KErrOverflow),
1.419 + ERR_TEST(-1234.9876E97,KRealFormatExponent,12,6,'.','0',0,_S("-Inf"),KErrOverflow),
1.420 + ERR_TEST(1234.9876E100,KRealFormatExponent,12,6,'.','0',0,_S("Inf"),KErrOverflow),
1.421 + ERR_TEST(1234.9876E200,KRealFormatExponent,12,6,'.','0',0,_S("Inf"),KErrOverflow),
1.422 + ERR_TEST(1234.9876E300,KRealFormatExponent,12,6,'.','0',0,_S("Inf"),KErrOverflow),
1.423 + // - does not fit
1.424 + ERR_TEST(1234.9876E24,KRealFormatExponent,12,7,'.','0',0),
1.425 + ERR_TEST(1234.9876E95,KRealFormatExponent,6,3,'.','0',0),
1.426 + ERR_TEST(1234.9876E-76,KRealFormatExponent,8,7,'.','0',0),
1.427 + ERR_TEST(1234.9876E-98,KRealFormatExponent,9,4,'.','0',0),
1.428 + // - three digits allowed - does not fit
1.429 + ERR_TEST(1234.9876E240,exponentThreeDigitExp,13,7,'.','0',0),
1.430 + ERR_TEST(1234.9876E98,exponentThreeDigitExp,6,1,'.','0',0),
1.431 + ERR_TEST(1234.9876E-160,exponentThreeDigitExp,9,7,'.','0',0),
1.432 + ERR_TEST(1234.9876E-98,exponentThreeDigitExp,9,4,'.','0',0),
1.433 + // - two digit exponent - no error, returns length
1.434 + ERR_TEST(1234.9876E95,KRealFormatExponent,12,6,'.','0',0,_S("1.234988E+98"),12),
1.435 + ERR_TEST(1234.9876E96,KRealFormatExponent,12,6,'.','0',0,_S("1.234988E+99"),12),
1.436 + ERR_TEST(1234.9876E-101,KRealFormatExponent,12,6,'.','0',0,_S("1.234988E-98"),12),
1.437 + ERR_TEST(1234.9876E-102,KRealFormatExponent,12,6,'.','0',0,_S("1.234988E-99"),12),
1.438 + // - three-digit exponent - no error, returns length
1.439 + ERR_TEST(1234.9876E125,exponentThreeDigitExp,13,6,'.','0',0,_S("1.234988E+128"),13),
1.440 + ERR_TEST(1234.9876E126,exponentThreeDigitExp,13,6,'.','0',0,_S("1.234988E+129"),13),
1.441 + ERR_TEST(1234.9876E-139,exponentThreeDigitExp,13,6,'.','0',0,_S("1.234988E-136"),13),
1.442 + ERR_TEST(1234.9876E-142,exponentThreeDigitExp,13,6,'.','0',0,_S("1.234988E-139"),13),
1.443 +
1.444 + // GENERAL - only two-digit exponents allowed - underflow
1.445 + ERR_TEST(1234.9876E-103,KRealFormatGeneral,12,6,'.','0',0,_S("0"),KErrUnderflow),
1.446 + ERR_TEST(1234.9876E-107,KRealFormatGeneral,12,6,'.','0',0,_S("0"),KErrUnderflow),
1.447 + ERR_TEST(1234.9876E-200,KRealFormatGeneral,12,6,'.','0',0,_S("0"),KErrUnderflow),
1.448 + ERR_TEST(1234.9876E-300,KRealFormatGeneral,12,6,'.','0',0,_S("0"),KErrUnderflow),
1.449 + // - overflow
1.450 + ERR_TEST(1234.9876E97,KRealFormatGeneral,12,6,'.','0',0,_S("Inf"),KErrOverflow),
1.451 + ERR_TEST(1234.9876E100,KRealFormatGeneral,12,6,'.','0',0,_S("Inf"),KErrOverflow),
1.452 + ERR_TEST(1234.9876E200,KRealFormatGeneral,12,6,'.','0',0,_S("Inf"),KErrOverflow),
1.453 + ERR_TEST(1234.9876E300,KRealFormatGeneral,12,6,'.','0',0,_S("Inf"),KErrOverflow),
1.454 + // - space for sign needed
1.455 + ERR_TEST(1,generalSpaceForSign,1,0,'.',',',0),
1.456 + // - no errors, returns length
1.457 + ERR_TEST(1234.9876E-101,KRealFormatGeneral,12,6,'.','0',0,_S("1.234988E-98"),12),
1.458 + ERR_TEST(1234.9876E-104,generalThreeDigitExp,13,6,'.','0',0,_S("1.234988E-101"),13),
1.459 + ERR_TEST(1234.9876E95,KRealFormatGeneral,12,6,'.','0',0,_S("1.234988E+98"),12),
1.460 + ERR_TEST(1234.9876E99,generalThreeDigitExp,13,6,'.','0',0,_S("1.234988E+102"),13),
1.461 + ERR_TEST(1234.9876,generalSpaceForSign,10,4,'.','0',0,_S("1234.9876"),9),
1.462 + ERR_TEST(-1234.9876,generalSpaceForSign,10,4,'.','0',0,_S("-1234.9876"),10),
1.463 +
1.464 + // NO EXPONENT - not enough space
1.465 + ERR_TEST(1234.9876E95,KRealFormatNoExponent,12,10,'.','0',0,_S("Inf"),KErrOverflow),
1.466 + ERR_TEST(1234.9876E103,KRealFormatNoExponent,12,10,'.','0',0,_S("Inf"),KErrOverflow),
1.467 + ERR_TEST(1234.9876E200,KRealFormatNoExponent,12,10,'.','0',0,_S("Inf"),KErrOverflow),
1.468 + ERR_TEST(1234.9876E300,KRealFormatNoExponent,12,10,'.','0',0,_S("Inf"),KErrOverflow),
1.469 + //
1.470 + ERR_TEST(1234.9876E-101,KRealFormatNoExponent,12,10,'.','0',0,_S("0"),KErrUnderflow),
1.471 + ERR_TEST(1234.9876E-104,KRealFormatNoExponent,13,11,'.','0',0,_S("0"),KErrUnderflow),
1.472 + ERR_TEST(1234.9876E-107,KRealFormatNoExponent,12,10,'.','0',0,_S("0"),KErrUnderflow),
1.473 + ERR_TEST(1234.9876E-109,KRealFormatNoExponent,12,10,'.','0',0,_S("0"),KErrUnderflow),
1.474 + ERR_TEST(1234.9876E-110,KRealFormatNoExponent,12,10,'.','0',0,_S("0"),KErrUnderflow),
1.475 + ERR_TEST(1234.9876E-200,KRealFormatNoExponent,12,10,'.','0',0,_S("0"),KErrUnderflow),
1.476 + ERR_TEST(1234.9876E-300,KRealFormatNoExponent,12,10,'.','0',0,_S("0"),KErrUnderflow),
1.477 + //
1.478 + ERR_TEST(.00568,KRealFormatNoExponent,3,3,'.','0',0,_S("0"),KErrUnderflow),
1.479 + ERR_TEST(12345.0,KRealFormatNoExponent,5,5,'.',',',3,_S("Inf"),KErrOverflow),
1.480 + ERR_TEST(100000.0,KRealFormatNoExponent,6,6,'.',',',3,_S("Inf"),KErrOverflow),
1.481 + ERR_TEST(100000.0,KRealFormatNoExponent,6,5,'.',',',3,_S("Inf"),KErrOverflow),
1.482 + ERR_TEST(99999.999,KRealFormatNoExponent,6,6,'.',',',3,_S("Inf"),KErrOverflow),
1.483 + ERR_TEST(1234567890.675,KRealFormatNoExponent,12,12,'.',',',3,_S("Inf"),KErrOverflow),
1.484 + ERR_TEST(1234567890.675,KRealFormatNoExponent,12,9,'.',',',3,_S("Inf"),KErrOverflow),
1.485 + ERR_TEST(1.0E3,KRealFormatNoExponent,4,4,'.',',',3,_S("Inf"),KErrOverflow),
1.486 + ERR_TEST(1234567890120.00,noExponentCalc,14,12,'.',',',0,_S("Inf"),KErrOverflow),
1.487 + ERR_TEST(999999999999.90,noExponentCalc,14,12,'.',',',0,_S("Inf"),KErrOverflow),
1.488 + //
1.489 + ERR_TEST(1234.9876,KRealFormatNoExponent,9,8,'.','0',0,_S("1234.9876"),9),
1.490 + ERR_TEST(1234.9876,KRealFormatNoExponent,12,12,'.','0',0,_S("1234.9876"),9),
1.491 + ERR_TEST(-1234.9876,KRealFormatNoExponent,10,10,'.','0',0,_S("-1234.9876"),10),
1.492 + ERR_TEST(-1234.9876,KRealFormatNoExponent,12,11,'.','0',0,_S("-1234.9876"),10),
1.493 + //
1.494 + //CALCULATOR - only two-digit exponents allowed - underflow
1.495 + ERR_TEST(1234.9876E-103,KRealFormatCalculator,12,6,'.','0',0,_S("0"),KErrUnderflow),
1.496 + ERR_TEST(1234.9876E-107,KRealFormatCalculator,12,6,'.','0',0,_S("0"),KErrUnderflow),
1.497 + ERR_TEST(1234.9876E-200,KRealFormatCalculator,12,6,'.','0',0,_S("0"),KErrUnderflow),
1.498 + ERR_TEST(1234.9876E-300,KRealFormatCalculator,12,6,'.','0',0,_S("0"),KErrUnderflow),
1.499 + // - overflow
1.500 + ERR_TEST(1234.9876E97,KRealFormatCalculator,12,6,'.','0',0,_S("Inf"),KErrOverflow),
1.501 + ERR_TEST(1234.9876E100,KRealFormatCalculator,12,6,'.','0',0,_S("Inf"),KErrOverflow),
1.502 + ERR_TEST(1234.9876E200,KRealFormatCalculator,12,6,'.','0',0,_S("Inf"),KErrOverflow),
1.503 + ERR_TEST(1234.9876E300,KRealFormatCalculator,12,6,'.','0',0,_S("Inf"),KErrOverflow),
1.504 + // - does not fit
1.505 + ERR_TEST(1234.9876E24,KRealFormatCalculator,12,7,'.','0',0),
1.506 + ERR_TEST(1234.9876E95,KRealFormatCalculator,6,2,'.','0',0),
1.507 + ERR_TEST(1234.9876E-76,KRealFormatCalculator,9,6,'.','0',0),
1.508 + ERR_TEST(1234.9876E-98,KRealFormatCalculator,6,4,'.','0',0),
1.509 + ERR_TEST(-1234.9876E24,KRealFormatCalculator,9,8,'.','0',0),
1.510 + ERR_TEST(-1234.9876E95,KRealFormatCalculator,4,2,'.','0',0),
1.511 + ERR_TEST(-1234.9876E-76,KRealFormatCalculator,10,7,'.','0',0),
1.512 + ERR_TEST(-1234.9876E-98,KRealFormatCalculator,9,4,'.','0',0),
1.513 + // - three digits allowed - does not fit
1.514 + ERR_TEST(1234.9876E240,calculatorThreeDigitExp,13,7,'.','0',0),
1.515 + ERR_TEST(1234.9876E98,calculatorThreeDigitExp,6,1,'.','0',0),
1.516 + ERR_TEST(1234.9876E-160,calculatorThreeDigitExp,9,7,'.','0',0),
1.517 + ERR_TEST(1234.9876E-98,calculatorThreeDigitExp,10,6,'.','0',0),
1.518 + ERR_TEST(-1234.9876E240,calculatorThreeDigitExp,11,8,'.','0',0),
1.519 + ERR_TEST(-1234.9876E98,calculatorThreeDigitExp,7,1,'.','0',0),
1.520 + ERR_TEST(-1234.9876E-160,calculatorThreeDigitExp,10,7,'.','0',0),
1.521 + ERR_TEST(-1234.9876E-98,calculatorThreeDigitExp,11,6,'.','0',0),
1.522 + //
1.523 + ERR_TEST(1234.9876E24,calculatorThreeDigitExp,13,7,'.','0',0),
1.524 + ERR_TEST(1234.9876E95,calculatorThreeDigitExp,9,7,'.','0',0),
1.525 + ERR_TEST(1234.9876E-76,calculatorThreeDigitExp,12,6,'.','0',0),
1.526 + ERR_TEST(1234.9876E-98,calculatorThreeDigitExp,6,4,'.','0',0),
1.527 + ERR_TEST(-1234.9876E24,calculatorThreeDigitExp,9,8,'.','0',0),
1.528 + ERR_TEST(-1234.9876E95,calculatorThreeDigitExp,8,2,'.','0',0),
1.529 + ERR_TEST(-1234.9876E-76,calculatorThreeDigitExp,10,7,'.','0',0),
1.530 + ERR_TEST(-1234.9876E-98,calculatorThreeDigitExp,10,4,'.','0',0)
1.531 + };
1.532 +
1.533 +GLDEF_D TUint size_testerr=sizeof(testerr);
1.534 +
1.535 +
1.536 +GLDEF_D DtoR_ERR_TEST testerr2[]=
1.537 + {
1.538 + DtoR_ERR_TEST(KNullDesC,KErrGeneral),
1.539 + DtoR_ERR_TEST(_L("E-20"),KErrGeneral),
1.540 + DtoR_ERR_TEST(_L("1.#INF"),KErrNone),
1.541 + DtoR_ERR_TEST(_L("1.#NAN"),KErrNone),
1.542 + DtoR_ERR_TEST(_L("c.fgh"),KErrGeneral),
1.543 + DtoR_ERR_TEST(_L("xyz"),KErrGeneral),
1.544 + DtoR_ERR_TEST(_L("1.0E"),KErrNone),
1.545 + DtoR_ERR_TEST(_L("1.0E2147483648"),KErrOverflow),
1.546 + DtoR_ERR_TEST(_L("1.234567801234567890E+308"),KErrNone),
1.547 + DtoR_ERR_TEST(_L("3.456789012345678901E-308"),KErrNone),
1.548 + DtoR_ERR_TEST(_L("1.797693134862316E+308"),KErrOverflow),
1.549 + DtoR_ERR_TEST(_L("2.225073858507201E-308"),KErrNone),
1.550 + DtoR_ERR_TEST(_L("3.0E+308"),KErrOverflow),
1.551 + DtoR_ERR_TEST(_L("1.0E-308"),KErrNone),
1.552 + DtoR_ERR_TEST(_L("3.0E310"),KErrOverflow),
1.553 + DtoR_ERR_TEST(_L("3.0E-310"),KErrNone),
1.554 + DtoR_ERR_TEST(_L("1.0E-325"),KErrUnderflow),
1.555 + DtoR_ERR_TEST(_L("2.0E-400"),KErrUnderflow),
1.556 + DtoR_ERR_TEST(_L("2.0E+400"),KErrOverflow),
1.557 + };
1.558 +
1.559 +GLDEF_D TUint size_testerr2=sizeof(testerr2);
1.560 +