copy.decTest 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. ------------------------------------------------------------------------
  2. -- copy.decTest -- quiet 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. extended: 1
  22. precision: 9
  23. rounding: half_up
  24. maxExponent: 999
  25. minExponent: -999
  26. -- Sanity check
  27. cpyx001 copy +7.50 -> 7.50
  28. -- Infinities
  29. cpyx011 copy Infinity -> Infinity
  30. cpyx012 copy -Infinity -> -Infinity
  31. -- NaNs, 0 payload
  32. cpyx021 copy NaN -> NaN
  33. cpyx022 copy -NaN -> -NaN
  34. cpyx023 copy sNaN -> sNaN
  35. cpyx024 copy -sNaN -> -sNaN
  36. -- NaNs, non-0 payload
  37. cpyx031 copy NaN10 -> NaN10
  38. cpyx032 copy -NaN10 -> -NaN10
  39. cpyx033 copy sNaN10 -> sNaN10
  40. cpyx034 copy -sNaN10 -> -sNaN10
  41. cpyx035 copy NaN7 -> NaN7
  42. cpyx036 copy -NaN7 -> -NaN7
  43. cpyx037 copy sNaN101 -> sNaN101
  44. cpyx038 copy -sNaN101 -> -sNaN101
  45. -- finites
  46. cpyx101 copy 7 -> 7
  47. cpyx102 copy -7 -> -7
  48. cpyx103 copy 75 -> 75
  49. cpyx104 copy -75 -> -75
  50. cpyx105 copy 7.50 -> 7.50
  51. cpyx106 copy -7.50 -> -7.50
  52. cpyx107 copy 7.500 -> 7.500
  53. cpyx108 copy -7.500 -> -7.500
  54. -- zeros
  55. cpyx111 copy 0 -> 0
  56. cpyx112 copy -0 -> -0
  57. cpyx113 copy 0E+4 -> 0E+4
  58. cpyx114 copy -0E+4 -> -0E+4
  59. cpyx115 copy 0.0000 -> 0.0000
  60. cpyx116 copy -0.0000 -> -0.0000
  61. cpyx117 copy 0E-141 -> 0E-141
  62. cpyx118 copy -0E-141 -> -0E-141
  63. -- full coefficients, alternating bits
  64. cpyx121 copy 268268268 -> 268268268
  65. cpyx122 copy -268268268 -> -268268268
  66. cpyx123 copy 134134134 -> 134134134
  67. cpyx124 copy -134134134 -> -134134134
  68. -- Nmax, Nmin, Ntiny
  69. cpyx131 copy 9.99999999E+999 -> 9.99999999E+999
  70. cpyx132 copy 1E-999 -> 1E-999
  71. cpyx133 copy 1.00000000E-999 -> 1.00000000E-999
  72. cpyx134 copy 1E-1007 -> 1E-1007
  73. cpyx135 copy -1E-1007 -> -1E-1007
  74. cpyx136 copy -1.00000000E-999 -> -1.00000000E-999
  75. cpyx137 copy -1E-999 -> -1E-999
  76. cpyx138 copy -9.99999999E+999 -> -9.99999999E+999