max.decTest 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  1. ------------------------------------------------------------------------
  2. -- max.decTest -- decimal maximum --
  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. -- we assume that base comparison is tested in compare.decTest, so
  22. -- these mainly cover special cases and rounding
  23. extended: 1
  24. precision: 9
  25. rounding: half_up
  26. maxExponent: 384
  27. minexponent: -383
  28. -- sanity checks
  29. maxx001 max -2 -2 -> -2
  30. maxx002 max -2 -1 -> -1
  31. maxx003 max -2 0 -> 0
  32. maxx004 max -2 1 -> 1
  33. maxx005 max -2 2 -> 2
  34. maxx006 max -1 -2 -> -1
  35. maxx007 max -1 -1 -> -1
  36. maxx008 max -1 0 -> 0
  37. maxx009 max -1 1 -> 1
  38. maxx010 max -1 2 -> 2
  39. maxx011 max 0 -2 -> 0
  40. maxx012 max 0 -1 -> 0
  41. maxx013 max 0 0 -> 0
  42. maxx014 max 0 1 -> 1
  43. maxx015 max 0 2 -> 2
  44. maxx016 max 1 -2 -> 1
  45. maxx017 max 1 -1 -> 1
  46. maxx018 max 1 0 -> 1
  47. maxx019 max 1 1 -> 1
  48. maxx020 max 1 2 -> 2
  49. maxx021 max 2 -2 -> 2
  50. maxx022 max 2 -1 -> 2
  51. maxx023 max 2 0 -> 2
  52. maxx025 max 2 1 -> 2
  53. maxx026 max 2 2 -> 2
  54. -- extended zeros
  55. maxx030 max 0 0 -> 0
  56. maxx031 max 0 -0 -> 0
  57. maxx032 max 0 -0.0 -> 0
  58. maxx033 max 0 0.0 -> 0
  59. maxx034 max -0 0 -> 0 -- note: -0 = 0, but 0 chosen
  60. maxx035 max -0 -0 -> -0
  61. maxx036 max -0 -0.0 -> -0.0
  62. maxx037 max -0 0.0 -> 0.0
  63. maxx038 max 0.0 0 -> 0
  64. maxx039 max 0.0 -0 -> 0.0
  65. maxx040 max 0.0 -0.0 -> 0.0
  66. maxx041 max 0.0 0.0 -> 0.0
  67. maxx042 max -0.0 0 -> 0
  68. maxx043 max -0.0 -0 -> -0.0
  69. maxx044 max -0.0 -0.0 -> -0.0
  70. maxx045 max -0.0 0.0 -> 0.0
  71. maxx050 max -0E1 0E1 -> 0E+1
  72. maxx051 max -0E2 0E2 -> 0E+2
  73. maxx052 max -0E2 0E1 -> 0E+1
  74. maxx053 max -0E1 0E2 -> 0E+2
  75. maxx054 max 0E1 -0E1 -> 0E+1
  76. maxx055 max 0E2 -0E2 -> 0E+2
  77. maxx056 max 0E2 -0E1 -> 0E+2
  78. maxx057 max 0E1 -0E2 -> 0E+1
  79. maxx058 max 0E1 0E1 -> 0E+1
  80. maxx059 max 0E2 0E2 -> 0E+2
  81. maxx060 max 0E2 0E1 -> 0E+2
  82. maxx061 max 0E1 0E2 -> 0E+2
  83. maxx062 max -0E1 -0E1 -> -0E+1
  84. maxx063 max -0E2 -0E2 -> -0E+2
  85. maxx064 max -0E2 -0E1 -> -0E+1
  86. maxx065 max -0E1 -0E2 -> -0E+1
  87. -- Specials
  88. precision: 9
  89. maxx090 max Inf -Inf -> Infinity
  90. maxx091 max Inf -1000 -> Infinity
  91. maxx092 max Inf -1 -> Infinity
  92. maxx093 max Inf -0 -> Infinity
  93. maxx094 max Inf 0 -> Infinity
  94. maxx095 max Inf 1 -> Infinity
  95. maxx096 max Inf 1000 -> Infinity
  96. maxx097 max Inf Inf -> Infinity
  97. maxx098 max -1000 Inf -> Infinity
  98. maxx099 max -Inf Inf -> Infinity
  99. maxx100 max -1 Inf -> Infinity
  100. maxx101 max -0 Inf -> Infinity
  101. maxx102 max 0 Inf -> Infinity
  102. maxx103 max 1 Inf -> Infinity
  103. maxx104 max 1000 Inf -> Infinity
  104. maxx105 max Inf Inf -> Infinity
  105. maxx120 max -Inf -Inf -> -Infinity
  106. maxx121 max -Inf -1000 -> -1000
  107. maxx122 max -Inf -1 -> -1
  108. maxx123 max -Inf -0 -> -0
  109. maxx124 max -Inf 0 -> 0
  110. maxx125 max -Inf 1 -> 1
  111. maxx126 max -Inf 1000 -> 1000
  112. maxx127 max -Inf Inf -> Infinity
  113. maxx128 max -Inf -Inf -> -Infinity
  114. maxx129 max -1000 -Inf -> -1000
  115. maxx130 max -1 -Inf -> -1
  116. maxx131 max -0 -Inf -> -0
  117. maxx132 max 0 -Inf -> 0
  118. maxx133 max 1 -Inf -> 1
  119. maxx134 max 1000 -Inf -> 1000
  120. maxx135 max Inf -Inf -> Infinity
  121. -- 2004.08.02 754r chooses number over NaN in mixed cases
  122. maxx141 max NaN -Inf -> -Infinity
  123. maxx142 max NaN -1000 -> -1000
  124. maxx143 max NaN -1 -> -1
  125. maxx144 max NaN -0 -> -0
  126. maxx145 max NaN 0 -> 0
  127. maxx146 max NaN 1 -> 1
  128. maxx147 max NaN 1000 -> 1000
  129. maxx148 max NaN Inf -> Infinity
  130. maxx149 max NaN NaN -> NaN
  131. maxx150 max -Inf NaN -> -Infinity
  132. maxx151 max -1000 NaN -> -1000
  133. maxx152 max -1 NaN -> -1
  134. maxx153 max -0 NaN -> -0
  135. maxx154 max 0 NaN -> 0
  136. maxx155 max 1 NaN -> 1
  137. maxx156 max 1000 NaN -> 1000
  138. maxx157 max Inf NaN -> Infinity
  139. maxx161 max sNaN -Inf -> NaN Invalid_operation
  140. maxx162 max sNaN -1000 -> NaN Invalid_operation
  141. maxx163 max sNaN -1 -> NaN Invalid_operation
  142. maxx164 max sNaN -0 -> NaN Invalid_operation
  143. maxx165 max sNaN 0 -> NaN Invalid_operation
  144. maxx166 max sNaN 1 -> NaN Invalid_operation
  145. maxx167 max sNaN 1000 -> NaN Invalid_operation
  146. maxx168 max sNaN NaN -> NaN Invalid_operation
  147. maxx169 max sNaN sNaN -> NaN Invalid_operation
  148. maxx170 max NaN sNaN -> NaN Invalid_operation
  149. maxx171 max -Inf sNaN -> NaN Invalid_operation
  150. maxx172 max -1000 sNaN -> NaN Invalid_operation
  151. maxx173 max -1 sNaN -> NaN Invalid_operation
  152. maxx174 max -0 sNaN -> NaN Invalid_operation
  153. maxx175 max 0 sNaN -> NaN Invalid_operation
  154. maxx176 max 1 sNaN -> NaN Invalid_operation
  155. maxx177 max 1000 sNaN -> NaN Invalid_operation
  156. maxx178 max Inf sNaN -> NaN Invalid_operation
  157. maxx179 max NaN sNaN -> NaN Invalid_operation
  158. -- propagating NaNs
  159. maxx181 max NaN9 -Inf -> -Infinity
  160. maxx182 max NaN8 9 -> 9
  161. maxx183 max -NaN7 Inf -> Infinity
  162. maxx184 max -NaN1 NaN11 -> -NaN1
  163. maxx185 max NaN2 NaN12 -> NaN2
  164. maxx186 max -NaN13 -NaN7 -> -NaN13
  165. maxx187 max NaN14 -NaN5 -> NaN14
  166. maxx188 max -Inf NaN4 -> -Infinity
  167. maxx189 max -9 -NaN3 -> -9
  168. maxx190 max Inf NaN2 -> Infinity
  169. maxx191 max sNaN99 -Inf -> NaN99 Invalid_operation
  170. maxx192 max sNaN98 -1 -> NaN98 Invalid_operation
  171. maxx193 max -sNaN97 NaN -> -NaN97 Invalid_operation
  172. maxx194 max sNaN96 sNaN94 -> NaN96 Invalid_operation
  173. maxx195 max NaN95 sNaN93 -> NaN93 Invalid_operation
  174. maxx196 max -Inf sNaN92 -> NaN92 Invalid_operation
  175. maxx197 max 0 sNaN91 -> NaN91 Invalid_operation
  176. maxx198 max Inf -sNaN90 -> -NaN90 Invalid_operation
  177. maxx199 max NaN sNaN89 -> NaN89 Invalid_operation
  178. -- rounding checks
  179. maxexponent: 999
  180. minexponent: -999
  181. precision: 9
  182. maxx201 max 12345678000 1 -> 1.23456780E+10 Rounded
  183. maxx202 max 1 12345678000 -> 1.23456780E+10 Rounded
  184. maxx203 max 1234567800 1 -> 1.23456780E+9 Rounded
  185. maxx204 max 1 1234567800 -> 1.23456780E+9 Rounded
  186. maxx205 max 1234567890 1 -> 1.23456789E+9 Rounded
  187. maxx206 max 1 1234567890 -> 1.23456789E+9 Rounded
  188. maxx207 max 1234567891 1 -> 1.23456789E+9 Inexact Rounded
  189. maxx208 max 1 1234567891 -> 1.23456789E+9 Inexact Rounded
  190. maxx209 max 12345678901 1 -> 1.23456789E+10 Inexact Rounded
  191. maxx210 max 1 12345678901 -> 1.23456789E+10 Inexact Rounded
  192. maxx211 max 1234567896 1 -> 1.23456790E+9 Inexact Rounded
  193. maxx212 max 1 1234567896 -> 1.23456790E+9 Inexact Rounded
  194. maxx213 max -1234567891 1 -> 1
  195. maxx214 max 1 -1234567891 -> 1
  196. maxx215 max -12345678901 1 -> 1
  197. maxx216 max 1 -12345678901 -> 1
  198. maxx217 max -1234567896 1 -> 1
  199. maxx218 max 1 -1234567896 -> 1
  200. precision: 15
  201. maxx221 max 12345678000 1 -> 12345678000
  202. maxx222 max 1 12345678000 -> 12345678000
  203. maxx223 max 1234567800 1 -> 1234567800
  204. maxx224 max 1 1234567800 -> 1234567800
  205. maxx225 max 1234567890 1 -> 1234567890
  206. maxx226 max 1 1234567890 -> 1234567890
  207. maxx227 max 1234567891 1 -> 1234567891
  208. maxx228 max 1 1234567891 -> 1234567891
  209. maxx229 max 12345678901 1 -> 12345678901
  210. maxx230 max 1 12345678901 -> 12345678901
  211. maxx231 max 1234567896 1 -> 1234567896
  212. maxx232 max 1 1234567896 -> 1234567896
  213. maxx233 max -1234567891 1 -> 1
  214. maxx234 max 1 -1234567891 -> 1
  215. maxx235 max -12345678901 1 -> 1
  216. maxx236 max 1 -12345678901 -> 1
  217. maxx237 max -1234567896 1 -> 1
  218. maxx238 max 1 -1234567896 -> 1
  219. -- from examples
  220. maxx280 max '3' '2' -> '3'
  221. maxx281 max '-10' '3' -> '3'
  222. maxx282 max '1.0' '1' -> '1'
  223. maxx283 max '1' '1.0' -> '1'
  224. maxx284 max '7' 'NaN' -> '7'
  225. -- overflow and underflow tests ...
  226. maxExponent: 999999999
  227. minexponent: -999999999
  228. maxx330 max +1.23456789012345E-0 9E+999999999 -> 9E+999999999
  229. maxx331 max 9E+999999999 +1.23456789012345E-0 -> 9E+999999999
  230. maxx332 max +0.100 9E-999999999 -> 0.100
  231. maxx333 max 9E-999999999 +0.100 -> 0.100
  232. maxx335 max -1.23456789012345E-0 9E+999999999 -> 9E+999999999
  233. maxx336 max 9E+999999999 -1.23456789012345E-0 -> 9E+999999999
  234. maxx337 max -0.100 9E-999999999 -> 9E-999999999
  235. maxx338 max 9E-999999999 -0.100 -> 9E-999999999
  236. maxx339 max 1e-599999999 1e-400000001 -> 1E-400000001
  237. maxx340 max 1e-599999999 1e-400000000 -> 1E-400000000
  238. maxx341 max 1e-600000000 1e-400000000 -> 1E-400000000
  239. maxx342 max 9e-999999998 0.01 -> 0.01
  240. maxx343 max 9e-999999998 0.1 -> 0.1
  241. maxx344 max 0.01 9e-999999998 -> 0.01
  242. maxx345 max 1e599999999 1e400000001 -> 1E+599999999
  243. maxx346 max 1e599999999 1e400000000 -> 1E+599999999
  244. maxx347 max 1e600000000 1e400000000 -> 1E+600000000
  245. maxx348 max 9e999999998 100 -> 9E+999999998
  246. maxx349 max 9e999999998 10 -> 9E+999999998
  247. maxx350 max 100 9e999999998 -> 9E+999999998
  248. -- signs
  249. maxx351 max 1e+777777777 1e+411111111 -> 1E+777777777
  250. maxx352 max 1e+777777777 -1e+411111111 -> 1E+777777777
  251. maxx353 max -1e+777777777 1e+411111111 -> 1E+411111111
  252. maxx354 max -1e+777777777 -1e+411111111 -> -1E+411111111
  253. maxx355 max 1e-777777777 1e-411111111 -> 1E-411111111
  254. maxx356 max 1e-777777777 -1e-411111111 -> 1E-777777777
  255. maxx357 max -1e-777777777 1e-411111111 -> 1E-411111111
  256. maxx358 max -1e-777777777 -1e-411111111 -> -1E-777777777
  257. -- expanded list from min/max 754r purple prose
  258. -- [explicit tests for exponent ordering]
  259. maxx401 max Inf 1.1 -> Infinity
  260. maxx402 max 1.1 1 -> 1.1
  261. maxx403 max 1 1.0 -> 1
  262. maxx404 max 1.0 0.1 -> 1.0
  263. maxx405 max 0.1 0.10 -> 0.1
  264. maxx406 max 0.10 0.100 -> 0.10
  265. maxx407 max 0.10 0 -> 0.10
  266. maxx408 max 0 0.0 -> 0
  267. maxx409 max 0.0 -0 -> 0.0
  268. maxx410 max 0.0 -0.0 -> 0.0
  269. maxx411 max 0.00 -0.0 -> 0.00
  270. maxx412 max 0.0 -0.00 -> 0.0
  271. maxx413 max 0 -0.0 -> 0
  272. maxx414 max 0 -0 -> 0
  273. maxx415 max -0.0 -0 -> -0.0
  274. maxx416 max -0 -0.100 -> -0
  275. maxx417 max -0.100 -0.10 -> -0.100
  276. maxx418 max -0.10 -0.1 -> -0.10
  277. maxx419 max -0.1 -1.0 -> -0.1
  278. maxx420 max -1.0 -1 -> -1.0
  279. maxx421 max -1 -1.1 -> -1
  280. maxx423 max -1.1 -Inf -> -1.1
  281. -- same with operands reversed
  282. maxx431 max 1.1 Inf -> Infinity
  283. maxx432 max 1 1.1 -> 1.1
  284. maxx433 max 1.0 1 -> 1
  285. maxx434 max 0.1 1.0 -> 1.0
  286. maxx435 max 0.10 0.1 -> 0.1
  287. maxx436 max 0.100 0.10 -> 0.10
  288. maxx437 max 0 0.10 -> 0.10
  289. maxx438 max 0.0 0 -> 0
  290. maxx439 max -0 0.0 -> 0.0
  291. maxx440 max -0.0 0.0 -> 0.0
  292. maxx441 max -0.0 0.00 -> 0.00
  293. maxx442 max -0.00 0.0 -> 0.0
  294. maxx443 max -0.0 0 -> 0
  295. maxx444 max -0 0 -> 0
  296. maxx445 max -0 -0.0 -> -0.0
  297. maxx446 max -0.100 -0 -> -0
  298. maxx447 max -0.10 -0.100 -> -0.100
  299. maxx448 max -0.1 -0.10 -> -0.10
  300. maxx449 max -1.0 -0.1 -> -0.1
  301. maxx450 max -1 -1.0 -> -1.0
  302. maxx451 max -1.1 -1 -> -1
  303. maxx453 max -Inf -1.1 -> -1.1
  304. -- largies
  305. maxx460 max 1000 1E+3 -> 1E+3
  306. maxx461 max 1E+3 1000 -> 1E+3
  307. maxx462 max 1000 -1E+3 -> 1000
  308. maxx463 max 1E+3 -1000 -> 1E+3
  309. maxx464 max -1000 1E+3 -> 1E+3
  310. maxx465 max -1E+3 1000 -> 1000
  311. maxx466 max -1000 -1E+3 -> -1000
  312. maxx467 max -1E+3 -1000 -> -1000
  313. -- rounding (results treated as though plus)
  314. maxexponent: 999999999
  315. minexponent: -999999999
  316. precision: 3
  317. maxx470 max 1 .5 -> 1
  318. maxx471 max 10 5 -> 10
  319. maxx472 max 100 50 -> 100
  320. maxx473 max 1000 500 -> 1.00E+3 Rounded
  321. maxx474 max 10000 5000 -> 1.00E+4 Rounded
  322. maxx475 max 6 .5 -> 6
  323. maxx476 max 66 5 -> 66
  324. maxx477 max 666 50 -> 666
  325. maxx478 max 6666 500 -> 6.67E+3 Rounded Inexact
  326. maxx479 max 66666 5000 -> 6.67E+4 Rounded Inexact
  327. maxx480 max 33333 5000 -> 3.33E+4 Rounded Inexact
  328. maxx481 max .5 1 -> 1
  329. maxx482 max .5 10 -> 10
  330. maxx483 max .5 100 -> 100
  331. maxx484 max .5 1000 -> 1.00E+3 Rounded
  332. maxx485 max .5 10000 -> 1.00E+4 Rounded
  333. maxx486 max .5 6 -> 6
  334. maxx487 max .5 66 -> 66
  335. maxx488 max .5 666 -> 666
  336. maxx489 max .5 6666 -> 6.67E+3 Rounded Inexact
  337. maxx490 max .5 66666 -> 6.67E+4 Rounded Inexact
  338. maxx491 max .5 33333 -> 3.33E+4 Rounded Inexact
  339. -- overflow tests
  340. maxexponent: 999999999
  341. minexponent: -999999999
  342. precision: 3
  343. maxx500 max 9.999E+999999999 0 -> Infinity Inexact Overflow Rounded
  344. maxx501 max -9.999E+999999999 0 -> 0
  345. -- subnormals and underflow
  346. precision: 3
  347. maxexponent: 999
  348. minexponent: -999
  349. maxx510 max 1.00E-999 0 -> 1.00E-999
  350. maxx511 max 0.1E-999 0 -> 1E-1000 Subnormal
  351. maxx512 max 0.10E-999 0 -> 1.0E-1000 Subnormal
  352. maxx513 max 0.100E-999 0 -> 1.0E-1000 Subnormal Rounded
  353. maxx514 max 0.01E-999 0 -> 1E-1001 Subnormal
  354. -- next is rounded to Nmin
  355. maxx515 max 0.999E-999 0 -> 1.00E-999 Inexact Rounded Subnormal Underflow
  356. maxx516 max 0.099E-999 0 -> 1.0E-1000 Inexact Rounded Subnormal Underflow
  357. maxx517 max 0.009E-999 0 -> 1E-1001 Inexact Rounded Subnormal Underflow
  358. maxx518 max 0.001E-999 0 -> 0E-1001 Inexact Rounded Subnormal Underflow Clamped
  359. maxx519 max 0.0009E-999 0 -> 0E-1001 Inexact Rounded Subnormal Underflow Clamped
  360. maxx520 max 0.0001E-999 0 -> 0E-1001 Inexact Rounded Subnormal Underflow Clamped
  361. maxx530 max -1.00E-999 0 -> 0
  362. maxx531 max -0.1E-999 0 -> 0
  363. maxx532 max -0.10E-999 0 -> 0
  364. maxx533 max -0.100E-999 0 -> 0
  365. maxx534 max -0.01E-999 0 -> 0
  366. maxx535 max -0.999E-999 0 -> 0
  367. maxx536 max -0.099E-999 0 -> 0
  368. maxx537 max -0.009E-999 0 -> 0
  369. maxx538 max -0.001E-999 0 -> 0
  370. maxx539 max -0.0009E-999 0 -> 0
  371. maxx540 max -0.0001E-999 0 -> 0
  372. -- misalignment traps for little-endian
  373. precision: 9
  374. maxx551 max 1.0 0.1 -> 1.0
  375. maxx552 max 0.1 1.0 -> 1.0
  376. maxx553 max 10.0 0.1 -> 10.0
  377. maxx554 max 0.1 10.0 -> 10.0
  378. maxx555 max 100 1.0 -> 100
  379. maxx556 max 1.0 100 -> 100
  380. maxx557 max 1000 10.0 -> 1000
  381. maxx558 max 10.0 1000 -> 1000
  382. maxx559 max 10000 100.0 -> 10000
  383. maxx560 max 100.0 10000 -> 10000
  384. maxx661 max 100000 1000.0 -> 100000
  385. maxx662 max 1000.0 100000 -> 100000
  386. maxx663 max 1000000 10000.0 -> 1000000
  387. maxx664 max 10000.0 1000000 -> 1000000
  388. -- payload decapitate
  389. precision: 5
  390. maxx670 max 11 -sNaN12345678901 -> -NaN78901 Invalid_operation
  391. -- Null tests
  392. maxx900 max 10 # -> NaN Invalid_operation
  393. maxx901 max # 10 -> NaN Invalid_operation