ddPlus.decTest 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. ------------------------------------------------------------------------
  2. -- ddPlus.decTest -- decDouble 0+x --
  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. -- All operands and results are decDoubles.
  22. precision: 16
  23. maxExponent: 384
  24. minExponent: -383
  25. extended: 1
  26. clamp: 1
  27. rounding: half_even
  28. -- Sanity check
  29. ddpls001 plus +7.50 -> 7.50
  30. -- Infinities
  31. ddpls011 plus Infinity -> Infinity
  32. ddpls012 plus -Infinity -> -Infinity
  33. -- NaNs, 0 payload
  34. ddpls021 plus NaN -> NaN
  35. ddpls022 plus -NaN -> -NaN
  36. ddpls023 plus sNaN -> NaN Invalid_operation
  37. ddpls024 plus -sNaN -> -NaN Invalid_operation
  38. -- NaNs, non-0 payload
  39. ddpls031 plus NaN13 -> NaN13
  40. ddpls032 plus -NaN13 -> -NaN13
  41. ddpls033 plus sNaN13 -> NaN13 Invalid_operation
  42. ddpls034 plus -sNaN13 -> -NaN13 Invalid_operation
  43. ddpls035 plus NaN70 -> NaN70
  44. ddpls036 plus -NaN70 -> -NaN70
  45. ddpls037 plus sNaN101 -> NaN101 Invalid_operation
  46. ddpls038 plus -sNaN101 -> -NaN101 Invalid_operation
  47. -- finites
  48. ddpls101 plus 7 -> 7
  49. ddpls102 plus -7 -> -7
  50. ddpls103 plus 75 -> 75
  51. ddpls104 plus -75 -> -75
  52. ddpls105 plus 7.50 -> 7.50
  53. ddpls106 plus -7.50 -> -7.50
  54. ddpls107 plus 7.500 -> 7.500
  55. ddpls108 plus -7.500 -> -7.500
  56. -- zeros
  57. ddpls111 plus 0 -> 0
  58. ddpls112 plus -0 -> 0
  59. ddpls113 plus 0E+4 -> 0E+4
  60. ddpls114 plus -0E+4 -> 0E+4
  61. ddpls115 plus 0.0000 -> 0.0000
  62. ddpls116 plus -0.0000 -> 0.0000
  63. ddpls117 plus 0E-141 -> 0E-141
  64. ddpls118 plus -0E-141 -> 0E-141
  65. -- full coefficients, alternating bits
  66. ddpls121 plus 2682682682682682 -> 2682682682682682
  67. ddpls122 plus -2682682682682682 -> -2682682682682682
  68. ddpls123 plus 1341341341341341 -> 1341341341341341
  69. ddpls124 plus -1341341341341341 -> -1341341341341341
  70. -- Nmax, Nmin, Ntiny
  71. ddpls131 plus 9.999999999999999E+384 -> 9.999999999999999E+384
  72. ddpls132 plus 1E-383 -> 1E-383
  73. ddpls133 plus 1.000000000000000E-383 -> 1.000000000000000E-383
  74. ddpls134 plus 1E-398 -> 1E-398 Subnormal
  75. ddpls135 plus -1E-398 -> -1E-398 Subnormal
  76. ddpls136 plus -1.000000000000000E-383 -> -1.000000000000000E-383
  77. ddpls137 plus -1E-383 -> -1E-383
  78. ddpls138 plus -9.999999999999999E+384 -> -9.999999999999999E+384