shift.decTest 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. ------------------------------------------------------------------------
  2. -- shift.decTest -- shift coefficient left or right --
  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. shix001 shift 0 0 -> 0
  28. shix002 shift 0 2 -> 0
  29. shix003 shift 1 2 -> 100
  30. shix004 shift 1 8 -> 100000000
  31. shix005 shift 1 9 -> 0
  32. shix006 shift 1 -1 -> 0
  33. shix007 shift 123456789 -1 -> 12345678
  34. shix008 shift 123456789 -8 -> 1
  35. shix009 shift 123456789 -9 -> 0
  36. shix010 shift 0 -2 -> 0
  37. -- rhs must be an integer
  38. shix011 shift 1 1.5 -> NaN Invalid_operation
  39. shix012 shift 1 1.0 -> NaN Invalid_operation
  40. shix013 shift 1 0.1 -> NaN Invalid_operation
  41. shix014 shift 1 0.0 -> NaN Invalid_operation
  42. shix015 shift 1 1E+1 -> NaN Invalid_operation
  43. shix016 shift 1 1E+99 -> NaN Invalid_operation
  44. shix017 shift 1 Inf -> NaN Invalid_operation
  45. shix018 shift 1 -Inf -> NaN Invalid_operation
  46. -- and |rhs| <= precision
  47. shix020 shift 1 -1000 -> NaN Invalid_operation
  48. shix021 shift 1 -10 -> NaN Invalid_operation
  49. shix022 shift 1 10 -> NaN Invalid_operation
  50. shix023 shift 1 1000 -> NaN Invalid_operation
  51. -- full shifting pattern
  52. shix030 shift 123456789 -9 -> 0
  53. shix031 shift 123456789 -8 -> 1
  54. shix032 shift 123456789 -7 -> 12
  55. shix033 shift 123456789 -6 -> 123
  56. shix034 shift 123456789 -5 -> 1234
  57. shix035 shift 123456789 -4 -> 12345
  58. shix036 shift 123456789 -3 -> 123456
  59. shix037 shift 123456789 -2 -> 1234567
  60. shix038 shift 123456789 -1 -> 12345678
  61. shix039 shift 123456789 -0 -> 123456789
  62. shix040 shift 123456789 +0 -> 123456789
  63. shix041 shift 123456789 +1 -> 234567890
  64. shix042 shift 123456789 +2 -> 345678900
  65. shix043 shift 123456789 +3 -> 456789000
  66. shix044 shift 123456789 +4 -> 567890000
  67. shix045 shift 123456789 +5 -> 678900000
  68. shix046 shift 123456789 +6 -> 789000000
  69. shix047 shift 123456789 +7 -> 890000000
  70. shix048 shift 123456789 +8 -> 900000000
  71. shix049 shift 123456789 +9 -> 0
  72. -- from examples
  73. shix051 shift 34 8 -> '400000000'
  74. shix052 shift 12 9 -> '0'
  75. shix053 shift 123456789 -2 -> '1234567'
  76. shix054 shift 123456789 0 -> '123456789'
  77. shix055 shift 123456789 +2 -> '345678900'
  78. -- zeros
  79. shix060 shift 0E-10 +9 -> 0E-10
  80. shix061 shift 0E-10 -9 -> 0E-10
  81. shix062 shift 0.000 +9 -> 0.000
  82. shix063 shift 0.000 -9 -> 0.000
  83. shix064 shift 0E+10 +9 -> 0E+10
  84. shix065 shift 0E+10 -9 -> 0E+10
  85. shix066 shift -0E-10 +9 -> -0E-10
  86. shix067 shift -0E-10 -9 -> -0E-10
  87. shix068 shift -0.000 +9 -> -0.000
  88. shix069 shift -0.000 -9 -> -0.000
  89. shix070 shift -0E+10 +9 -> -0E+10
  90. shix071 shift -0E+10 -9 -> -0E+10
  91. -- Nmax, Nmin, Ntiny
  92. shix141 shift 9.99999999E+999 -1 -> 9.9999999E+998
  93. shix142 shift 9.99999999E+999 -8 -> 9E+991
  94. shix143 shift 9.99999999E+999 1 -> 9.99999990E+999
  95. shix144 shift 9.99999999E+999 8 -> 9.00000000E+999
  96. shix145 shift 1E-999 -1 -> 0E-999
  97. shix146 shift 1E-999 -8 -> 0E-999
  98. shix147 shift 1E-999 1 -> 1.0E-998
  99. shix148 shift 1E-999 8 -> 1.00000000E-991
  100. shix151 shift 1.00000000E-999 -1 -> 1.0000000E-1000
  101. shix152 shift 1.00000000E-999 -8 -> 1E-1007
  102. shix153 shift 1.00000000E-999 1 -> 0E-1007
  103. shix154 shift 1.00000000E-999 8 -> 0E-1007
  104. shix155 shift 9.00000000E-999 -1 -> 9.0000000E-1000
  105. shix156 shift 9.00000000E-999 -8 -> 9E-1007
  106. shix157 shift 9.00000000E-999 1 -> 0E-1007
  107. shix158 shift 9.00000000E-999 8 -> 0E-1007
  108. shix160 shift 1E-1007 -1 -> 0E-1007
  109. shix161 shift 1E-1007 -8 -> 0E-1007
  110. shix162 shift 1E-1007 1 -> 1.0E-1006
  111. shix163 shift 1E-1007 8 -> 1.00000000E-999
  112. -- negatives
  113. shix171 shift -9.99999999E+999 -1 -> -9.9999999E+998
  114. shix172 shift -9.99999999E+999 -8 -> -9E+991
  115. shix173 shift -9.99999999E+999 1 -> -9.99999990E+999
  116. shix174 shift -9.99999999E+999 8 -> -9.00000000E+999
  117. shix175 shift -1E-999 -1 -> -0E-999
  118. shix176 shift -1E-999 -8 -> -0E-999
  119. shix177 shift -1E-999 1 -> -1.0E-998
  120. shix178 shift -1E-999 8 -> -1.00000000E-991
  121. shix181 shift -1.00000000E-999 -1 -> -1.0000000E-1000
  122. shix182 shift -1.00000000E-999 -8 -> -1E-1007
  123. shix183 shift -1.00000000E-999 1 -> -0E-1007
  124. shix184 shift -1.00000000E-999 8 -> -0E-1007
  125. shix185 shift -9.00000000E-999 -1 -> -9.0000000E-1000
  126. shix186 shift -9.00000000E-999 -8 -> -9E-1007
  127. shix187 shift -9.00000000E-999 1 -> -0E-1007
  128. shix188 shift -9.00000000E-999 8 -> -0E-1007
  129. shix190 shift -1E-1007 -1 -> -0E-1007
  130. shix191 shift -1E-1007 -8 -> -0E-1007
  131. shix192 shift -1E-1007 1 -> -1.0E-1006
  132. shix193 shift -1E-1007 8 -> -1.00000000E-999
  133. -- more negatives (of sanities)
  134. shix201 shift -0 0 -> -0
  135. shix202 shift -0 2 -> -0
  136. shix203 shift -1 2 -> -100
  137. shix204 shift -1 8 -> -100000000
  138. shix205 shift -1 9 -> -0
  139. shix206 shift -1 -1 -> -0
  140. shix207 shift -123456789 -1 -> -12345678
  141. shix208 shift -123456789 -8 -> -1
  142. shix209 shift -123456789 -9 -> -0
  143. shix210 shift -0 -2 -> -0
  144. shix211 shift -0 -0 -> -0
  145. -- Specials; NaNs are handled as usual
  146. shix781 shift -Inf -8 -> -Infinity
  147. shix782 shift -Inf -1 -> -Infinity
  148. shix783 shift -Inf -0 -> -Infinity
  149. shix784 shift -Inf 0 -> -Infinity
  150. shix785 shift -Inf 1 -> -Infinity
  151. shix786 shift -Inf 8 -> -Infinity
  152. shix787 shift -1000 -Inf -> NaN Invalid_operation
  153. shix788 shift -Inf -Inf -> NaN Invalid_operation
  154. shix789 shift -1 -Inf -> NaN Invalid_operation
  155. shix790 shift -0 -Inf -> NaN Invalid_operation
  156. shix791 shift 0 -Inf -> NaN Invalid_operation
  157. shix792 shift 1 -Inf -> NaN Invalid_operation
  158. shix793 shift 1000 -Inf -> NaN Invalid_operation
  159. shix794 shift Inf -Inf -> NaN Invalid_operation
  160. shix800 shift Inf -Inf -> NaN Invalid_operation
  161. shix801 shift Inf -8 -> Infinity
  162. shix802 shift Inf -1 -> Infinity
  163. shix803 shift Inf -0 -> Infinity
  164. shix804 shift Inf 0 -> Infinity
  165. shix805 shift Inf 1 -> Infinity
  166. shix806 shift Inf 8 -> Infinity
  167. shix807 shift Inf Inf -> NaN Invalid_operation
  168. shix808 shift -1000 Inf -> NaN Invalid_operation
  169. shix809 shift -Inf Inf -> NaN Invalid_operation
  170. shix810 shift -1 Inf -> NaN Invalid_operation
  171. shix811 shift -0 Inf -> NaN Invalid_operation
  172. shix812 shift 0 Inf -> NaN Invalid_operation
  173. shix813 shift 1 Inf -> NaN Invalid_operation
  174. shix814 shift 1000 Inf -> NaN Invalid_operation
  175. shix815 shift Inf Inf -> NaN Invalid_operation
  176. shix821 shift NaN -Inf -> NaN
  177. shix822 shift NaN -1000 -> NaN
  178. shix823 shift NaN -1 -> NaN
  179. shix824 shift NaN -0 -> NaN
  180. shix825 shift NaN 0 -> NaN
  181. shix826 shift NaN 1 -> NaN
  182. shix827 shift NaN 1000 -> NaN
  183. shix828 shift NaN Inf -> NaN
  184. shix829 shift NaN NaN -> NaN
  185. shix830 shift -Inf NaN -> NaN
  186. shix831 shift -1000 NaN -> NaN
  187. shix832 shift -1 NaN -> NaN
  188. shix833 shift -0 NaN -> NaN
  189. shix834 shift 0 NaN -> NaN
  190. shix835 shift 1 NaN -> NaN
  191. shix836 shift 1000 NaN -> NaN
  192. shix837 shift Inf NaN -> NaN
  193. shix841 shift sNaN -Inf -> NaN Invalid_operation
  194. shix842 shift sNaN -1000 -> NaN Invalid_operation
  195. shix843 shift sNaN -1 -> NaN Invalid_operation
  196. shix844 shift sNaN -0 -> NaN Invalid_operation
  197. shix845 shift sNaN 0 -> NaN Invalid_operation
  198. shix846 shift sNaN 1 -> NaN Invalid_operation
  199. shix847 shift sNaN 1000 -> NaN Invalid_operation
  200. shix848 shift sNaN NaN -> NaN Invalid_operation
  201. shix849 shift sNaN sNaN -> NaN Invalid_operation
  202. shix850 shift NaN sNaN -> NaN Invalid_operation
  203. shix851 shift -Inf sNaN -> NaN Invalid_operation
  204. shix852 shift -1000 sNaN -> NaN Invalid_operation
  205. shix853 shift -1 sNaN -> NaN Invalid_operation
  206. shix854 shift -0 sNaN -> NaN Invalid_operation
  207. shix855 shift 0 sNaN -> NaN Invalid_operation
  208. shix856 shift 1 sNaN -> NaN Invalid_operation
  209. shix857 shift 1000 sNaN -> NaN Invalid_operation
  210. shix858 shift Inf sNaN -> NaN Invalid_operation
  211. shix859 shift NaN sNaN -> NaN Invalid_operation
  212. -- propagating NaNs
  213. shix861 shift NaN1 -Inf -> NaN1
  214. shix862 shift +NaN2 -1000 -> NaN2
  215. shix863 shift NaN3 1000 -> NaN3
  216. shix864 shift NaN4 Inf -> NaN4
  217. shix865 shift NaN5 +NaN6 -> NaN5
  218. shix866 shift -Inf NaN7 -> NaN7
  219. shix867 shift -1000 NaN8 -> NaN8
  220. shix868 shift 1000 NaN9 -> NaN9
  221. shix869 shift Inf +NaN10 -> NaN10
  222. shix871 shift sNaN11 -Inf -> NaN11 Invalid_operation
  223. shix872 shift sNaN12 -1000 -> NaN12 Invalid_operation
  224. shix873 shift sNaN13 1000 -> NaN13 Invalid_operation
  225. shix874 shift sNaN14 NaN17 -> NaN14 Invalid_operation
  226. shix875 shift sNaN15 sNaN18 -> NaN15 Invalid_operation
  227. shix876 shift NaN16 sNaN19 -> NaN19 Invalid_operation
  228. shix877 shift -Inf +sNaN20 -> NaN20 Invalid_operation
  229. shix878 shift -1000 sNaN21 -> NaN21 Invalid_operation
  230. shix879 shift 1000 sNaN22 -> NaN22 Invalid_operation
  231. shix880 shift Inf sNaN23 -> NaN23 Invalid_operation
  232. shix881 shift +NaN25 +sNaN24 -> NaN24 Invalid_operation
  233. shix882 shift -NaN26 NaN28 -> -NaN26
  234. shix883 shift -sNaN27 sNaN29 -> -NaN27 Invalid_operation
  235. shix884 shift 1000 -NaN30 -> -NaN30
  236. shix885 shift 1000 -sNaN31 -> -NaN31 Invalid_operation