tointegralx.decTest 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. ------------------------------------------------------------------------
  2. -- tointegralx.decTest -- round decimal to integral value, exact --
  3. -- Copyright (c) IBM Corporation, 2001, 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 tests the extended specification 'round-to-integral
  22. -- value' operation (from IEEE 854, later modified in 754r).
  23. -- All non-zero results are defined as being those from either copy or
  24. -- quantize, so those are assumed to have been tested.
  25. -- This tests toIntegraExact, which may set Inexact
  26. extended: 1
  27. precision: 9
  28. rounding: half_up
  29. maxExponent: 999
  30. minExponent: -999
  31. intxx001 tointegralx 0 -> 0
  32. intxx002 tointegralx 0.0 -> 0
  33. intxx003 tointegralx 0.1 -> 0 Inexact Rounded
  34. intxx004 tointegralx 0.2 -> 0 Inexact Rounded
  35. intxx005 tointegralx 0.3 -> 0 Inexact Rounded
  36. intxx006 tointegralx 0.4 -> 0 Inexact Rounded
  37. intxx007 tointegralx 0.5 -> 1 Inexact Rounded
  38. intxx008 tointegralx 0.6 -> 1 Inexact Rounded
  39. intxx009 tointegralx 0.7 -> 1 Inexact Rounded
  40. intxx010 tointegralx 0.8 -> 1 Inexact Rounded
  41. intxx011 tointegralx 0.9 -> 1 Inexact Rounded
  42. intxx012 tointegralx 1 -> 1
  43. intxx013 tointegralx 1.0 -> 1 Rounded
  44. intxx014 tointegralx 1.1 -> 1 Inexact Rounded
  45. intxx015 tointegralx 1.2 -> 1 Inexact Rounded
  46. intxx016 tointegralx 1.3 -> 1 Inexact Rounded
  47. intxx017 tointegralx 1.4 -> 1 Inexact Rounded
  48. intxx018 tointegralx 1.5 -> 2 Inexact Rounded
  49. intxx019 tointegralx 1.6 -> 2 Inexact Rounded
  50. intxx020 tointegralx 1.7 -> 2 Inexact Rounded
  51. intxx021 tointegralx 1.8 -> 2 Inexact Rounded
  52. intxx022 tointegralx 1.9 -> 2 Inexact Rounded
  53. -- negatives
  54. intxx031 tointegralx -0 -> -0
  55. intxx032 tointegralx -0.0 -> -0
  56. intxx033 tointegralx -0.1 -> -0 Inexact Rounded
  57. intxx034 tointegralx -0.2 -> -0 Inexact Rounded
  58. intxx035 tointegralx -0.3 -> -0 Inexact Rounded
  59. intxx036 tointegralx -0.4 -> -0 Inexact Rounded
  60. intxx037 tointegralx -0.5 -> -1 Inexact Rounded
  61. intxx038 tointegralx -0.6 -> -1 Inexact Rounded
  62. intxx039 tointegralx -0.7 -> -1 Inexact Rounded
  63. intxx040 tointegralx -0.8 -> -1 Inexact Rounded
  64. intxx041 tointegralx -0.9 -> -1 Inexact Rounded
  65. intxx042 tointegralx -1 -> -1
  66. intxx043 tointegralx -1.0 -> -1 Rounded
  67. intxx044 tointegralx -1.1 -> -1 Inexact Rounded
  68. intxx045 tointegralx -1.2 -> -1 Inexact Rounded
  69. intxx046 tointegralx -1.3 -> -1 Inexact Rounded
  70. intxx047 tointegralx -1.4 -> -1 Inexact Rounded
  71. intxx048 tointegralx -1.5 -> -2 Inexact Rounded
  72. intxx049 tointegralx -1.6 -> -2 Inexact Rounded
  73. intxx050 tointegralx -1.7 -> -2 Inexact Rounded
  74. intxx051 tointegralx -1.8 -> -2 Inexact Rounded
  75. intxx052 tointegralx -1.9 -> -2 Inexact Rounded
  76. -- next two would be NaN using quantize(x, 0)
  77. intxx053 tointegralx 10E+30 -> 1.0E+31
  78. intxx054 tointegralx -10E+30 -> -1.0E+31
  79. -- numbers around precision
  80. precision: 9
  81. intxx060 tointegralx '56267E-10' -> '0' Inexact Rounded
  82. intxx061 tointegralx '56267E-5' -> '1' Inexact Rounded
  83. intxx062 tointegralx '56267E-2' -> '563' Inexact Rounded
  84. intxx063 tointegralx '56267E-1' -> '5627' Inexact Rounded
  85. intxx065 tointegralx '56267E-0' -> '56267'
  86. intxx066 tointegralx '56267E+0' -> '56267'
  87. intxx067 tointegralx '56267E+1' -> '5.6267E+5'
  88. intxx068 tointegralx '56267E+2' -> '5.6267E+6'
  89. intxx069 tointegralx '56267E+3' -> '5.6267E+7'
  90. intxx070 tointegralx '56267E+4' -> '5.6267E+8'
  91. intxx071 tointegralx '56267E+5' -> '5.6267E+9'
  92. intxx072 tointegralx '56267E+6' -> '5.6267E+10'
  93. intxx073 tointegralx '1.23E+96' -> '1.23E+96'
  94. intxx074 tointegralx '1.23E+384' -> '1.23E+384'
  95. intxx075 tointegralx '1.23E+999' -> '1.23E+999'
  96. intxx080 tointegralx '-56267E-10' -> '-0' Inexact Rounded
  97. intxx081 tointegralx '-56267E-5' -> '-1' Inexact Rounded
  98. intxx082 tointegralx '-56267E-2' -> '-563' Inexact Rounded
  99. intxx083 tointegralx '-56267E-1' -> '-5627' Inexact Rounded
  100. intxx085 tointegralx '-56267E-0' -> '-56267'
  101. intxx086 tointegralx '-56267E+0' -> '-56267'
  102. intxx087 tointegralx '-56267E+1' -> '-5.6267E+5'
  103. intxx088 tointegralx '-56267E+2' -> '-5.6267E+6'
  104. intxx089 tointegralx '-56267E+3' -> '-5.6267E+7'
  105. intxx090 tointegralx '-56267E+4' -> '-5.6267E+8'
  106. intxx091 tointegralx '-56267E+5' -> '-5.6267E+9'
  107. intxx092 tointegralx '-56267E+6' -> '-5.6267E+10'
  108. intxx093 tointegralx '-1.23E+96' -> '-1.23E+96'
  109. intxx094 tointegralx '-1.23E+384' -> '-1.23E+384'
  110. intxx095 tointegralx '-1.23E+999' -> '-1.23E+999'
  111. -- subnormal inputs
  112. intxx100 tointegralx 1E-999 -> 0 Inexact Rounded
  113. intxx101 tointegralx 0.1E-999 -> 0 Inexact Rounded
  114. intxx102 tointegralx 0.01E-999 -> 0 Inexact Rounded
  115. intxx103 tointegralx 0E-999 -> 0
  116. -- specials and zeros
  117. intxx120 tointegralx 'Inf' -> Infinity
  118. intxx121 tointegralx '-Inf' -> -Infinity
  119. intxx122 tointegralx NaN -> NaN
  120. intxx123 tointegralx sNaN -> NaN Invalid_operation
  121. intxx124 tointegralx 0 -> 0
  122. intxx125 tointegralx -0 -> -0
  123. intxx126 tointegralx 0.000 -> 0
  124. intxx127 tointegralx 0.00 -> 0
  125. intxx128 tointegralx 0.0 -> 0
  126. intxx129 tointegralx 0 -> 0
  127. intxx130 tointegralx 0E-3 -> 0
  128. intxx131 tointegralx 0E-2 -> 0
  129. intxx132 tointegralx 0E-1 -> 0
  130. intxx133 tointegralx 0E-0 -> 0
  131. intxx134 tointegralx 0E+1 -> 0E+1
  132. intxx135 tointegralx 0E+2 -> 0E+2
  133. intxx136 tointegralx 0E+3 -> 0E+3
  134. intxx137 tointegralx 0E+4 -> 0E+4
  135. intxx138 tointegralx 0E+5 -> 0E+5
  136. intxx139 tointegralx -0.000 -> -0
  137. intxx140 tointegralx -0.00 -> -0
  138. intxx141 tointegralx -0.0 -> -0
  139. intxx142 tointegralx -0 -> -0
  140. intxx143 tointegralx -0E-3 -> -0
  141. intxx144 tointegralx -0E-2 -> -0
  142. intxx145 tointegralx -0E-1 -> -0
  143. intxx146 tointegralx -0E-0 -> -0
  144. intxx147 tointegralx -0E+1 -> -0E+1
  145. intxx148 tointegralx -0E+2 -> -0E+2
  146. intxx149 tointegralx -0E+3 -> -0E+3
  147. intxx150 tointegralx -0E+4 -> -0E+4
  148. intxx151 tointegralx -0E+5 -> -0E+5
  149. -- propagating NaNs
  150. intxx152 tointegralx NaN808 -> NaN808
  151. intxx153 tointegralx sNaN080 -> NaN80 Invalid_operation
  152. intxx154 tointegralx -NaN808 -> -NaN808
  153. intxx155 tointegralx -sNaN080 -> -NaN80 Invalid_operation
  154. intxx156 tointegralx -NaN -> -NaN
  155. intxx157 tointegralx -sNaN -> -NaN Invalid_operation
  156. -- examples
  157. rounding: half_up
  158. precision: 9
  159. intxx200 tointegralx 2.1 -> 2 Inexact Rounded
  160. intxx201 tointegralx 100 -> 100
  161. intxx202 tointegralx 100.0 -> 100 Rounded
  162. intxx203 tointegralx 101.5 -> 102 Inexact Rounded
  163. intxx204 tointegralx -101.5 -> -102 Inexact Rounded
  164. intxx205 tointegralx 10E+5 -> 1.0E+6
  165. intxx206 tointegralx 7.89E+77 -> 7.89E+77
  166. intxx207 tointegralx -Inf -> -Infinity
  167. -- all rounding modes
  168. rounding: half_even
  169. intxx210 tointegralx 55.5 -> 56 Inexact Rounded
  170. intxx211 tointegralx 56.5 -> 56 Inexact Rounded
  171. intxx212 tointegralx 57.5 -> 58 Inexact Rounded
  172. intxx213 tointegralx -55.5 -> -56 Inexact Rounded
  173. intxx214 tointegralx -56.5 -> -56 Inexact Rounded
  174. intxx215 tointegralx -57.5 -> -58 Inexact Rounded
  175. rounding: half_up
  176. intxx220 tointegralx 55.5 -> 56 Inexact Rounded
  177. intxx221 tointegralx 56.5 -> 57 Inexact Rounded
  178. intxx222 tointegralx 57.5 -> 58 Inexact Rounded
  179. intxx223 tointegralx -55.5 -> -56 Inexact Rounded
  180. intxx224 tointegralx -56.5 -> -57 Inexact Rounded
  181. intxx225 tointegralx -57.5 -> -58 Inexact Rounded
  182. rounding: half_down
  183. intxx230 tointegralx 55.5 -> 55 Inexact Rounded
  184. intxx231 tointegralx 56.5 -> 56 Inexact Rounded
  185. intxx232 tointegralx 57.5 -> 57 Inexact Rounded
  186. intxx233 tointegralx -55.5 -> -55 Inexact Rounded
  187. intxx234 tointegralx -56.5 -> -56 Inexact Rounded
  188. intxx235 tointegralx -57.5 -> -57 Inexact Rounded
  189. rounding: up
  190. intxx240 tointegralx 55.3 -> 56 Inexact Rounded
  191. intxx241 tointegralx 56.3 -> 57 Inexact Rounded
  192. intxx242 tointegralx 57.3 -> 58 Inexact Rounded
  193. intxx243 tointegralx -55.3 -> -56 Inexact Rounded
  194. intxx244 tointegralx -56.3 -> -57 Inexact Rounded
  195. intxx245 tointegralx -57.3 -> -58 Inexact Rounded
  196. rounding: down
  197. intxx250 tointegralx 55.7 -> 55 Inexact Rounded
  198. intxx251 tointegralx 56.7 -> 56 Inexact Rounded
  199. intxx252 tointegralx 57.7 -> 57 Inexact Rounded
  200. intxx253 tointegralx -55.7 -> -55 Inexact Rounded
  201. intxx254 tointegralx -56.7 -> -56 Inexact Rounded
  202. intxx255 tointegralx -57.7 -> -57 Inexact Rounded
  203. rounding: ceiling
  204. intxx260 tointegralx 55.3 -> 56 Inexact Rounded
  205. intxx261 tointegralx 56.3 -> 57 Inexact Rounded
  206. intxx262 tointegralx 57.3 -> 58 Inexact Rounded
  207. intxx263 tointegralx -55.3 -> -55 Inexact Rounded
  208. intxx264 tointegralx -56.3 -> -56 Inexact Rounded
  209. intxx265 tointegralx -57.3 -> -57 Inexact Rounded
  210. rounding: floor
  211. intxx270 tointegralx 55.7 -> 55 Inexact Rounded
  212. intxx271 tointegralx 56.7 -> 56 Inexact Rounded
  213. intxx272 tointegralx 57.7 -> 57 Inexact Rounded
  214. intxx273 tointegralx -55.7 -> -56 Inexact Rounded
  215. intxx274 tointegralx -56.7 -> -57 Inexact Rounded
  216. intxx275 tointegralx -57.7 -> -58 Inexact Rounded
  217. -- Int and uInt32 edge values for testing conversions
  218. precision: 16
  219. intxx300 tointegralx -2147483646 -> -2147483646
  220. intxx301 tointegralx -2147483647 -> -2147483647
  221. intxx302 tointegralx -2147483648 -> -2147483648
  222. intxx303 tointegralx -2147483649 -> -2147483649
  223. intxx304 tointegralx 2147483646 -> 2147483646
  224. intxx305 tointegralx 2147483647 -> 2147483647
  225. intxx306 tointegralx 2147483648 -> 2147483648
  226. intxx307 tointegralx 2147483649 -> 2147483649
  227. intxx308 tointegralx 4294967294 -> 4294967294
  228. intxx309 tointegralx 4294967295 -> 4294967295
  229. intxx310 tointegralx 4294967296 -> 4294967296
  230. intxx311 tointegralx 4294967297 -> 4294967297