dqCopy.decTest 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. ------------------------------------------------------------------------
  2. -- dqCopy.decTest -- quiet decQuad copy --
  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 decQuads.
  22. extended: 1
  23. clamp: 1
  24. precision: 34
  25. maxExponent: 6144
  26. minExponent: -6143
  27. rounding: half_even
  28. -- Sanity check
  29. dqcpy001 copy +7.50 -> 7.50
  30. -- Infinities
  31. dqcpy011 copy Infinity -> Infinity
  32. dqcpy012 copy -Infinity -> -Infinity
  33. -- NaNs, 0 payload
  34. dqcpy021 copy NaN -> NaN
  35. dqcpy022 copy -NaN -> -NaN
  36. dqcpy023 copy sNaN -> sNaN
  37. dqcpy024 copy -sNaN -> -sNaN
  38. -- NaNs, non-0 payload
  39. dqcpy031 copy NaN10 -> NaN10
  40. dqcpy032 copy -NaN10 -> -NaN10
  41. dqcpy033 copy sNaN10 -> sNaN10
  42. dqcpy034 copy -sNaN10 -> -sNaN10
  43. dqcpy035 copy NaN7 -> NaN7
  44. dqcpy036 copy -NaN7 -> -NaN7
  45. dqcpy037 copy sNaN101 -> sNaN101
  46. dqcpy038 copy -sNaN101 -> -sNaN101
  47. -- finites
  48. dqcpy101 copy 7 -> 7
  49. dqcpy102 copy -7 -> -7
  50. dqcpy103 copy 75 -> 75
  51. dqcpy104 copy -75 -> -75
  52. dqcpy105 copy 7.50 -> 7.50
  53. dqcpy106 copy -7.50 -> -7.50
  54. dqcpy107 copy 7.500 -> 7.500
  55. dqcpy108 copy -7.500 -> -7.500
  56. -- zeros
  57. dqcpy111 copy 0 -> 0
  58. dqcpy112 copy -0 -> -0
  59. dqcpy113 copy 0E+4 -> 0E+4
  60. dqcpy114 copy -0E+4 -> -0E+4
  61. dqcpy115 copy 0.0000 -> 0.0000
  62. dqcpy116 copy -0.0000 -> -0.0000
  63. dqcpy117 copy 0E-141 -> 0E-141
  64. dqcpy118 copy -0E-141 -> -0E-141
  65. -- full coefficients, alternating bits
  66. dqcpy121 copy 2682682682682682682682682682682682 -> 2682682682682682682682682682682682
  67. dqcpy122 copy -2682682682682682682682682682682682 -> -2682682682682682682682682682682682
  68. dqcpy123 copy 1341341341341341341341341341341341 -> 1341341341341341341341341341341341
  69. dqcpy124 copy -1341341341341341341341341341341341 -> -1341341341341341341341341341341341
  70. -- Nmax, Nmin, Ntiny
  71. dqcpy131 copy 9.999999999999999999999999999999999E+6144 -> 9.999999999999999999999999999999999E+6144
  72. dqcpy132 copy 1E-6143 -> 1E-6143
  73. dqcpy133 copy 1.000000000000000000000000000000000E-6143 -> 1.000000000000000000000000000000000E-6143
  74. dqcpy134 copy 1E-6176 -> 1E-6176
  75. dqcpy135 copy -1E-6176 -> -1E-6176
  76. dqcpy136 copy -1.000000000000000000000000000000000E-6143 -> -1.000000000000000000000000000000000E-6143
  77. dqcpy137 copy -1E-6143 -> -1E-6143
  78. dqcpy138 copy -9.999999999999999999999999999999999E+6144 -> -9.999999999999999999999999999999999E+6144