copynegate.decTest 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. ------------------------------------------------------------------------
  2. -- copyNegate.decTest -- quiet 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. extended: 1
  22. precision: 9
  23. rounding: half_up
  24. maxExponent: 999
  25. minExponent: -999
  26. -- Sanity check
  27. cpnx001 copynegate +7.50 -> -7.50
  28. -- Infinities
  29. cpnx011 copynegate Infinity -> -Infinity
  30. cpnx012 copynegate -Infinity -> Infinity
  31. -- NaNs, 0 payload
  32. cpnx021 copynegate NaN -> -NaN
  33. cpnx022 copynegate -NaN -> NaN
  34. cpnx023 copynegate sNaN -> -sNaN
  35. cpnx024 copynegate -sNaN -> sNaN
  36. -- NaNs, non-0 payload
  37. cpnx031 copynegate NaN13 -> -NaN13
  38. cpnx032 copynegate -NaN13 -> NaN13
  39. cpnx033 copynegate sNaN13 -> -sNaN13
  40. cpnx034 copynegate -sNaN13 -> sNaN13
  41. cpnx035 copynegate NaN70 -> -NaN70
  42. cpnx036 copynegate -NaN70 -> NaN70
  43. cpnx037 copynegate sNaN101 -> -sNaN101
  44. cpnx038 copynegate -sNaN101 -> sNaN101
  45. -- finites
  46. cpnx101 copynegate 7 -> -7
  47. cpnx102 copynegate -7 -> 7
  48. cpnx103 copynegate 75 -> -75
  49. cpnx104 copynegate -75 -> 75
  50. cpnx105 copynegate 7.50 -> -7.50
  51. cpnx106 copynegate -7.50 -> 7.50
  52. cpnx107 copynegate 7.500 -> -7.500
  53. cpnx108 copynegate -7.500 -> 7.500
  54. -- zeros
  55. cpnx111 copynegate 0 -> -0
  56. cpnx112 copynegate -0 -> 0
  57. cpnx113 copynegate 0E+4 -> -0E+4
  58. cpnx114 copynegate -0E+4 -> 0E+4
  59. cpnx115 copynegate 0.0000 -> -0.0000
  60. cpnx116 copynegate -0.0000 -> 0.0000
  61. cpnx117 copynegate 0E-141 -> -0E-141
  62. cpnx118 copynegate -0E-141 -> 0E-141
  63. -- full coefficients, alternating bits
  64. cpnx121 copynegate 268268268 -> -268268268
  65. cpnx122 copynegate -268268268 -> 268268268
  66. cpnx123 copynegate 134134134 -> -134134134
  67. cpnx124 copynegate -134134134 -> 134134134
  68. -- Nmax, Nmin, Ntiny
  69. cpnx131 copynegate 9.99999999E+999 -> -9.99999999E+999
  70. cpnx132 copynegate 1E-999 -> -1E-999
  71. cpnx133 copynegate 1.00000000E-999 -> -1.00000000E-999
  72. cpnx134 copynegate 1E-1007 -> -1E-1007
  73. cpnx135 copynegate -1E-1007 -> 1E-1007
  74. cpnx136 copynegate -1.00000000E-999 -> 1.00000000E-999
  75. cpnx137 copynegate -1E-999 -> 1E-999
  76. cpnx138 copynegate -9.99999999E+999 -> 9.99999999E+999