dqCopyNegate.decTest 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. ------------------------------------------------------------------------
  2. -- dqCopyNegate.decTest -- quiet decQuad copy and negate --
  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. dqcpn001 copynegate +7.50 -> -7.50
  30. -- Infinities
  31. dqcpn011 copynegate Infinity -> -Infinity
  32. dqcpn012 copynegate -Infinity -> Infinity
  33. -- NaNs, 0 payload
  34. dqcpn021 copynegate NaN -> -NaN
  35. dqcpn022 copynegate -NaN -> NaN
  36. dqcpn023 copynegate sNaN -> -sNaN
  37. dqcpn024 copynegate -sNaN -> sNaN
  38. -- NaNs, non-0 payload
  39. dqcpn031 copynegate NaN13 -> -NaN13
  40. dqcpn032 copynegate -NaN13 -> NaN13
  41. dqcpn033 copynegate sNaN13 -> -sNaN13
  42. dqcpn034 copynegate -sNaN13 -> sNaN13
  43. dqcpn035 copynegate NaN70 -> -NaN70
  44. dqcpn036 copynegate -NaN70 -> NaN70
  45. dqcpn037 copynegate sNaN101 -> -sNaN101
  46. dqcpn038 copynegate -sNaN101 -> sNaN101
  47. -- finites
  48. dqcpn101 copynegate 7 -> -7
  49. dqcpn102 copynegate -7 -> 7
  50. dqcpn103 copynegate 75 -> -75
  51. dqcpn104 copynegate -75 -> 75
  52. dqcpn105 copynegate 7.50 -> -7.50
  53. dqcpn106 copynegate -7.50 -> 7.50
  54. dqcpn107 copynegate 7.500 -> -7.500
  55. dqcpn108 copynegate -7.500 -> 7.500
  56. -- zeros
  57. dqcpn111 copynegate 0 -> -0
  58. dqcpn112 copynegate -0 -> 0
  59. dqcpn113 copynegate 0E+4 -> -0E+4
  60. dqcpn114 copynegate -0E+4 -> 0E+4
  61. dqcpn115 copynegate 0.0000 -> -0.0000
  62. dqcpn116 copynegate -0.0000 -> 0.0000
  63. dqcpn117 copynegate 0E-141 -> -0E-141
  64. dqcpn118 copynegate -0E-141 -> 0E-141
  65. -- full coefficients, alternating bits
  66. dqcpn121 copynegate 2682682682682682682682682682682682 -> -2682682682682682682682682682682682
  67. dqcpn122 copynegate -2682682682682682682682682682682682 -> 2682682682682682682682682682682682
  68. dqcpn123 copynegate 1341341341341341341341341341341341 -> -1341341341341341341341341341341341
  69. dqcpn124 copynegate -1341341341341341341341341341341341 -> 1341341341341341341341341341341341
  70. -- Nmax, Nmin, Ntiny
  71. dqcpn131 copynegate 9.999999999999999999999999999999999E+6144 -> -9.999999999999999999999999999999999E+6144
  72. dqcpn132 copynegate 1E-6143 -> -1E-6143
  73. dqcpn133 copynegate 1.000000000000000000000000000000000E-6143 -> -1.000000000000000000000000000000000E-6143
  74. dqcpn134 copynegate 1E-6176 -> -1E-6176
  75. dqcpn135 copynegate -1E-6176 -> 1E-6176
  76. dqcpn136 copynegate -1.000000000000000000000000000000000E-6143 -> 1.000000000000000000000000000000000E-6143
  77. dqcpn137 copynegate -1E-6143 -> 1E-6143
  78. dqcpn138 copynegate -9.999999999999999999999999999999999E+6144 -> 9.999999999999999999999999999999999E+6144