plus.decTest 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. ------------------------------------------------------------------------
  2. -- plus.decTest -- decimal monadic addition --
  3. -- Copyright (c) IBM Corporation, 1981, 2008. All rights reserved. --
  4. ------------------------------------------------------------------------
  5. -- Please see the document "General Decimal Arithmetic Testcases" --
  6. -- at http://www2.hursley.ibm.com/decimal for the description of --
  7. -- these testcases. --
  8. -- --
  9. -- These testcases are experimental ('beta' versions), and they --
  10. -- may contain errors. They are offered on an as-is basis. In --
  11. -- particular, achieving the same results as the tests here is not --
  12. -- a guarantee that an implementation complies with any Standard --
  13. -- or specification. The tests are not exhaustive. --
  14. -- --
  15. -- Please send comments, suggestions, and corrections to the author: --
  16. -- Mike Cowlishaw, IBM Fellow --
  17. -- IBM UK, PO Box 31, Birmingham Road, Warwick CV34 5JL, UK --
  18. -- mfc@uk.ibm.com --
  19. ------------------------------------------------------------------------
  20. version: 2.59
  21. -- This set of tests primarily tests the existence of the operator.
  22. -- Addition and rounding, and most overflows, are tested elsewhere.
  23. extended: 1
  24. precision: 9
  25. rounding: half_up
  26. maxExponent: 384
  27. minexponent: -383
  28. plux001 plus '1' -> '1'
  29. plux002 plus '-1' -> '-1'
  30. plux003 plus '1.00' -> '1.00'
  31. plux004 plus '-1.00' -> '-1.00'
  32. plux005 plus '0' -> '0'
  33. plux006 plus '0.00' -> '0.00'
  34. plux007 plus '00.0' -> '0.0'
  35. plux008 plus '00.00' -> '0.00'
  36. plux009 plus '00' -> '0'
  37. plux010 plus '-2' -> '-2'
  38. plux011 plus '2' -> '2'
  39. plux012 plus '-2.00' -> '-2.00'
  40. plux013 plus '2.00' -> '2.00'
  41. plux014 plus '-0' -> '0'
  42. plux015 plus '-0.00' -> '0.00'
  43. plux016 plus '-00.0' -> '0.0'
  44. plux017 plus '-00.00' -> '0.00'
  45. plux018 plus '-00' -> '0'
  46. plux020 plus '-2000000' -> '-2000000'
  47. plux021 plus '2000000' -> '2000000'
  48. precision: 7
  49. plux022 plus '-2000000' -> '-2000000'
  50. plux023 plus '2000000' -> '2000000'
  51. precision: 6
  52. plux024 plus '-2000000' -> '-2.00000E+6' Rounded
  53. plux025 plus '2000000' -> '2.00000E+6' Rounded
  54. precision: 3
  55. plux026 plus '-2000000' -> '-2.00E+6' Rounded
  56. plux027 plus '2000000' -> '2.00E+6' Rounded
  57. -- more fixed, potential LHS swaps if done by add 0
  58. precision: 9
  59. plux060 plus '56267E-10' -> '0.0000056267'
  60. plux061 plus '56267E-5' -> '0.56267'
  61. plux062 plus '56267E-2' -> '562.67'
  62. plux063 plus '56267E-1' -> '5626.7'
  63. plux065 plus '56267E-0' -> '56267'
  64. plux066 plus '56267E+0' -> '56267'
  65. plux067 plus '56267E+1' -> '5.6267E+5'
  66. plux068 plus '56267E+2' -> '5.6267E+6'
  67. plux069 plus '56267E+3' -> '5.6267E+7'
  68. plux070 plus '56267E+4' -> '5.6267E+8'
  69. plux071 plus '56267E+5' -> '5.6267E+9'
  70. plux072 plus '56267E+6' -> '5.6267E+10'
  71. plux080 plus '-56267E-10' -> '-0.0000056267'
  72. plux081 plus '-56267E-5' -> '-0.56267'
  73. plux082 plus '-56267E-2' -> '-562.67'
  74. plux083 plus '-56267E-1' -> '-5626.7'
  75. plux085 plus '-56267E-0' -> '-56267'
  76. plux086 plus '-56267E+0' -> '-56267'
  77. plux087 plus '-56267E+1' -> '-5.6267E+5'
  78. plux088 plus '-56267E+2' -> '-5.6267E+6'
  79. plux089 plus '-56267E+3' -> '-5.6267E+7'
  80. plux090 plus '-56267E+4' -> '-5.6267E+8'
  81. plux091 plus '-56267E+5' -> '-5.6267E+9'
  82. plux092 plus '-56267E+6' -> '-5.6267E+10'
  83. -- "lhs" zeros in plus and minus have exponent = operand
  84. plux120 plus '-0E3' -> '0E+3'
  85. plux121 plus '-0E2' -> '0E+2'
  86. plux122 plus '-0E1' -> '0E+1'
  87. plux123 plus '-0E0' -> '0'
  88. plux124 plus '+0E0' -> '0'
  89. plux125 plus '+0E1' -> '0E+1'
  90. plux126 plus '+0E2' -> '0E+2'
  91. plux127 plus '+0E3' -> '0E+3'
  92. plux130 plus '-5E3' -> '-5E+3'
  93. plux131 plus '-5E8' -> '-5E+8'
  94. plux132 plus '-5E13' -> '-5E+13'
  95. plux133 plus '-5E18' -> '-5E+18'
  96. plux134 plus '+5E3' -> '5E+3'
  97. plux135 plus '+5E8' -> '5E+8'
  98. plux136 plus '+5E13' -> '5E+13'
  99. plux137 plus '+5E18' -> '5E+18'
  100. -- specials
  101. plux150 plus 'Inf' -> 'Infinity'
  102. plux151 plus '-Inf' -> '-Infinity'
  103. plux152 plus NaN -> NaN
  104. plux153 plus sNaN -> NaN Invalid_operation
  105. plux154 plus NaN77 -> NaN77
  106. plux155 plus sNaN88 -> NaN88 Invalid_operation
  107. plux156 plus -NaN -> -NaN
  108. plux157 plus -sNaN -> -NaN Invalid_operation
  109. plux158 plus -NaN77 -> -NaN77
  110. plux159 plus -sNaN88 -> -NaN88 Invalid_operation
  111. -- overflow tests
  112. maxexponent: 999999999
  113. minexponent: -999999999
  114. precision: 3
  115. plux160 plus 9.999E+999999999 -> Infinity Inexact Overflow Rounded
  116. plux161 plus -9.999E+999999999 -> -Infinity Inexact Overflow Rounded
  117. -- subnormals and underflow
  118. precision: 3
  119. maxexponent: 999
  120. minexponent: -999
  121. plux210 plus 1.00E-999 -> 1.00E-999
  122. plux211 plus 0.1E-999 -> 1E-1000 Subnormal
  123. plux212 plus 0.10E-999 -> 1.0E-1000 Subnormal
  124. plux213 plus 0.100E-999 -> 1.0E-1000 Subnormal Rounded
  125. plux214 plus 0.01E-999 -> 1E-1001 Subnormal
  126. -- next is rounded to Emin
  127. plux215 plus 0.999E-999 -> 1.00E-999 Inexact Rounded Subnormal Underflow
  128. plux216 plus 0.099E-999 -> 1.0E-1000 Inexact Rounded Subnormal Underflow
  129. plux217 plus 0.009E-999 -> 1E-1001 Inexact Rounded Subnormal Underflow
  130. plux218 plus 0.001E-999 -> 0E-1001 Inexact Rounded Subnormal Underflow Clamped
  131. plux219 plus 0.0009E-999 -> 0E-1001 Inexact Rounded Subnormal Underflow Clamped
  132. plux220 plus 0.0001E-999 -> 0E-1001 Inexact Rounded Subnormal Underflow Clamped
  133. plux230 plus -1.00E-999 -> -1.00E-999
  134. plux231 plus -0.1E-999 -> -1E-1000 Subnormal
  135. plux232 plus -0.10E-999 -> -1.0E-1000 Subnormal
  136. plux233 plus -0.100E-999 -> -1.0E-1000 Subnormal Rounded
  137. plux234 plus -0.01E-999 -> -1E-1001 Subnormal
  138. -- next is rounded to Emin
  139. plux235 plus -0.999E-999 -> -1.00E-999 Inexact Rounded Subnormal Underflow
  140. plux236 plus -0.099E-999 -> -1.0E-1000 Inexact Rounded Subnormal Underflow
  141. plux237 plus -0.009E-999 -> -1E-1001 Inexact Rounded Subnormal Underflow
  142. plux238 plus -0.001E-999 -> -0E-1001 Inexact Rounded Subnormal Underflow Clamped
  143. plux239 plus -0.0009E-999 -> -0E-1001 Inexact Rounded Subnormal Underflow Clamped
  144. plux240 plus -0.0001E-999 -> -0E-1001 Inexact Rounded Subnormal Underflow Clamped
  145. -- subnormals clamped to 0-Etiny
  146. precision: 16
  147. maxExponent: 384
  148. minExponent: -383
  149. plux251 plus 7E-398 -> 7E-398 Subnormal
  150. plux252 plus 0E-398 -> 0E-398
  151. plux253 plus 7E-399 -> 1E-398 Subnormal Underflow Inexact Rounded
  152. plux254 plus 4E-399 -> 0E-398 Clamped Subnormal Underflow Inexact Rounded
  153. plux255 plus 7E-400 -> 0E-398 Clamped Subnormal Underflow Inexact Rounded
  154. plux256 plus 7E-401 -> 0E-398 Clamped Subnormal Underflow Inexact Rounded
  155. plux257 plus 0E-399 -> 0E-398 Clamped
  156. plux258 plus 0E-400 -> 0E-398 Clamped
  157. plux259 plus 0E-401 -> 0E-398 Clamped
  158. -- long operand checks
  159. maxexponent: 999
  160. minexponent: -999
  161. precision: 9
  162. plux301 plus 12345678000 -> 1.23456780E+10 Rounded
  163. plux302 plus 1234567800 -> 1.23456780E+9 Rounded
  164. plux303 plus 1234567890 -> 1.23456789E+9 Rounded
  165. plux304 plus 1234567891 -> 1.23456789E+9 Inexact Rounded
  166. plux305 plus 12345678901 -> 1.23456789E+10 Inexact Rounded
  167. plux306 plus 1234567896 -> 1.23456790E+9 Inexact Rounded
  168. -- still checking
  169. precision: 15
  170. plux321 plus 12345678000 -> 12345678000
  171. plux322 plus 1234567800 -> 1234567800
  172. plux323 plus 1234567890 -> 1234567890
  173. plux324 plus 1234567891 -> 1234567891
  174. plux325 plus 12345678901 -> 12345678901
  175. plux326 plus 1234567896 -> 1234567896
  176. precision: 9
  177. -- Null tests
  178. plu900 plus # -> NaN Invalid_operation