expr-old.test
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:41k
源码类别:

通讯编程

开发平台:

Visual C++

  1. # Commands covered: expr
  2. #
  3. # This file contains the original set of tests for Tcl's expr command.
  4. # Since the expr command is now compiled, a new set of tests covering
  5. # the new implementation are in the files "parseExpr.test" and
  6. # "compExpr.test". Sourcing this file into Tcl runs the tests and generates
  7. # output for errors. No output means no errors were found.
  8. #
  9. # Copyright (c) 1991-1994 The Regents of the University of California.
  10. # Copyright (c) 1994-1997 Sun Microsystems, Inc.
  11. # Copyright (c) 1998-2000 by Scriptics Corporation.
  12. #
  13. # See the file "license.terms" for information on usage and redistribution
  14. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  15. #
  16. # RCS: @(#) $Id: expr-old.test,v 1.16.2.5 2006/05/04 12:34:39 dgp Exp $
  17. if {[lsearch [namespace children] ::tcltest] == -1} {
  18.     package require tcltest 2.1
  19.     namespace import -force ::tcltest::*
  20. }
  21. if {([catch {expr T1()} msg] == 1) && ($msg == {unknown math function "T1"})} {
  22.     set gotT1 0
  23.     puts "This application hasn't been compiled with the "T1" and"
  24.     puts ""T2" math functions, so I'll skip some of the expr tests."
  25. } else {
  26.     set gotT1 1
  27. }
  28. # First, test all of the integer operators individually.
  29. test expr-old-1.1 {integer operators} {expr -4} -4
  30. test expr-old-1.2 {integer operators} {expr -(1+4)} -5
  31. test expr-old-1.3 {integer operators} {expr ~3} -4
  32. test expr-old-1.4 {integer operators} {expr !2} 0
  33. test expr-old-1.5 {integer operators} {expr !0} 1
  34. test expr-old-1.6 {integer operators} {expr 4*6} 24
  35. test expr-old-1.7 {integer operators} {expr 36/12} 3
  36. test expr-old-1.8 {integer operators} {expr 27/4} 6
  37. test expr-old-1.9 {integer operators} {expr 27%4} 3
  38. test expr-old-1.10 {integer operators} {expr 2+2} 4
  39. test expr-old-1.11 {integer operators} {expr 2-6} -4
  40. test expr-old-1.12 {integer operators} {expr 1<<3} 8
  41. test expr-old-1.13 {integer operators} {expr 0xff>>2} 63
  42. test expr-old-1.14 {integer operators} {expr -1>>2} -1
  43. test expr-old-1.15 {integer operators} {expr 3>2} 1
  44. test expr-old-1.16 {integer operators} {expr 2>2} 0
  45. test expr-old-1.17 {integer operators} {expr 1>2} 0
  46. test expr-old-1.18 {integer operators} {expr 3<2} 0
  47. test expr-old-1.19 {integer operators} {expr 2<2} 0
  48. test expr-old-1.20 {integer operators} {expr 1<2} 1
  49. test expr-old-1.21 {integer operators} {expr 3>=2} 1
  50. test expr-old-1.22 {integer operators} {expr 2>=2} 1
  51. test expr-old-1.23 {integer operators} {expr 1>=2} 0
  52. test expr-old-1.24 {integer operators} {expr 3<=2} 0
  53. test expr-old-1.25 {integer operators} {expr 2<=2} 1
  54. test expr-old-1.26 {integer operators} {expr 1<=2} 1
  55. test expr-old-1.27 {integer operators} {expr 3==2} 0
  56. test expr-old-1.28 {integer operators} {expr 2==2} 1
  57. test expr-old-1.29 {integer operators} {expr 3!=2} 1
  58. test expr-old-1.30 {integer operators} {expr 2!=2} 0
  59. test expr-old-1.31 {integer operators} {expr 7&0x13} 3
  60. test expr-old-1.32 {integer operators} {expr 7^0x13} 20
  61. test expr-old-1.33 {integer operators} {expr 7|0x13} 23
  62. test expr-old-1.34 {integer operators} {expr 0&&1} 0
  63. test expr-old-1.35 {integer operators} {expr 0&&0} 0
  64. test expr-old-1.36 {integer operators} {expr 1&&3} 1
  65. test expr-old-1.37 {integer operators} {expr 0||1} 1
  66. test expr-old-1.38 {integer operators} {expr 3||0} 1
  67. test expr-old-1.39 {integer operators} {expr 0||0} 0
  68. test expr-old-1.40 {integer operators} {expr 3>2?44:66} 44
  69. test expr-old-1.41 {integer operators} {expr 2>3?44:66} 66
  70. test expr-old-1.42 {integer operators} {expr 36/5} 7
  71. test expr-old-1.43 {integer operators} {expr 36%5} 1
  72. test expr-old-1.44 {integer operators} {expr -36/5} -8
  73. test expr-old-1.45 {integer operators} {expr -36%5} 4
  74. test expr-old-1.46 {integer operators} {expr 36/-5} -8
  75. test expr-old-1.47 {integer operators} {expr 36%-5} -4
  76. test expr-old-1.48 {integer operators} {expr -36/-5} 7
  77. test expr-old-1.49 {integer operators} {expr -36%-5} -1
  78. test expr-old-1.50 {integer operators} {expr +36} 36
  79. test expr-old-1.51 {integer operators} {expr +--++36} 36
  80. test expr-old-1.52 {integer operators} {expr +36%+5} 1
  81. test expr-old-1.53 {integer operators} {
  82.     catch {unset x}
  83.     set x yes
  84.     list [expr {1 && $x}] [expr {$x && 1}] 
  85.          [expr {0 || $x}] [expr {$x || 0}]
  86. } {1 1 1 1}
  87. # Check the floating-point operators individually, along with
  88. # automatic conversion to integers where needed.
  89. test expr-old-2.1 {floating-point operators} {expr -4.2} -4.2
  90. test expr-old-2.2 {floating-point operators} {expr -(1.1+4.2)} -5.3
  91. test expr-old-2.3 {floating-point operators} {expr +5.7} 5.7
  92. test expr-old-2.4 {floating-point operators} {expr +--+-62.0} -62.0
  93. test expr-old-2.5 {floating-point operators} {expr !2.1} 0
  94. test expr-old-2.6 {floating-point operators} {expr !0.0} 1
  95. test expr-old-2.7 {floating-point operators} {expr 4.2*6.3} 26.46
  96. test expr-old-2.8 {floating-point operators} {expr 36.0/12.0} 3.0
  97. test expr-old-2.9 {floating-point operators} {expr 27/4.0} 6.75
  98. test expr-old-2.10 {floating-point operators} {expr 2.3+2.1} 4.4
  99. test expr-old-2.11 {floating-point operators} {expr 2.3-6.5} -4.2
  100. test expr-old-2.12 {floating-point operators} {expr 3.1>2.1} 1
  101. test expr-old-2.13 {floating-point operators} {expr {2.1 > 2.1}} 0
  102. test expr-old-2.14 {floating-point operators} {expr 1.23>2.34e+1} 0
  103. test expr-old-2.15 {floating-point operators} {expr 3.45<2.34} 0
  104. test expr-old-2.16 {floating-point operators} {expr 0.002e3<--200e-2} 0
  105. test expr-old-2.17 {floating-point operators} {expr 1.1<2.1} 1
  106. test expr-old-2.18 {floating-point operators} {expr 3.1>=2.2} 1
  107. test expr-old-2.19 {floating-point operators} {expr 2.345>=2.345} 1
  108. test expr-old-2.20 {floating-point operators} {expr 1.1>=2.2} 0
  109. test expr-old-2.21 {floating-point operators} {expr 3.0<=2.0} 0
  110. test expr-old-2.22 {floating-point operators} {expr 2.2<=2.2} 1
  111. test expr-old-2.23 {floating-point operators} {expr 2.2<=2.2001} 1
  112. test expr-old-2.24 {floating-point operators} {expr 3.2==2.2} 0
  113. test expr-old-2.25 {floating-point operators} {expr 2.2==2.2} 1
  114. test expr-old-2.26 {floating-point operators} {expr 3.2!=2.2} 1
  115. test expr-old-2.27 {floating-point operators} {expr 2.2!=2.2} 0
  116. test expr-old-2.28 {floating-point operators} {expr 0.0&&0.0} 0
  117. test expr-old-2.29 {floating-point operators} {expr 0.0&&1.3} 0
  118. test expr-old-2.30 {floating-point operators} {expr 1.3&&0.0} 0
  119. test expr-old-2.31 {floating-point operators} {expr 1.3&&3.3} 1
  120. test expr-old-2.32 {floating-point operators} {expr 0.0||0.0} 0
  121. test expr-old-2.33 {floating-point operators} {expr 0.0||1.3} 1
  122. test expr-old-2.34 {floating-point operators} {expr 1.3||0.0} 1
  123. test expr-old-2.35 {floating-point operators} {expr 3.3||0.0} 1
  124. test expr-old-2.36 {floating-point operators} {expr 3.3>2.3?44.3:66.3} 44.3
  125. test expr-old-2.37 {floating-point operators} {expr 2.3>3.3?44.3:66.3} 66.3
  126. test expr-old-2.38 {floating-point operators} {
  127.     list [catch {expr 028.1 + 09.2} msg] $msg
  128. } {0 37.3}
  129. # Operators that aren't legal on floating-point numbers
  130. test expr-old-3.1 {illegal floating-point operations} {
  131.     list [catch {expr ~4.0} msg] $msg
  132. } {1 {can't use floating-point value as operand of "~"}}
  133. test expr-old-3.2 {illegal floating-point operations} {
  134.     list [catch {expr 27%4.0} msg] $msg
  135. } {1 {can't use floating-point value as operand of "%"}}
  136. test expr-old-3.3 {illegal floating-point operations} {
  137.     list [catch {expr 27.0%4} msg] $msg
  138. } {1 {can't use floating-point value as operand of "%"}}
  139. test expr-old-3.4 {illegal floating-point operations} {
  140.     list [catch {expr 1.0<<3} msg] $msg
  141. } {1 {can't use floating-point value as operand of "<<"}}
  142. test expr-old-3.5 {illegal floating-point operations} {
  143.     list [catch {expr 3<<1.0} msg] $msg
  144. } {1 {can't use floating-point value as operand of "<<"}}
  145. test expr-old-3.6 {illegal floating-point operations} {
  146.     list [catch {expr 24.0>>3} msg] $msg
  147. } {1 {can't use floating-point value as operand of ">>"}}
  148. test expr-old-3.7 {illegal floating-point operations} {
  149.     list [catch {expr 24>>3.0} msg] $msg
  150. } {1 {can't use floating-point value as operand of ">>"}}
  151. test expr-old-3.8 {illegal floating-point operations} {
  152.     list [catch {expr 24&3.0} msg] $msg
  153. } {1 {can't use floating-point value as operand of "&"}}
  154. test expr-old-3.9 {illegal floating-point operations} {
  155.     list [catch {expr 24.0|3} msg] $msg
  156. } {1 {can't use floating-point value as operand of "|"}}
  157. test expr-old-3.10 {illegal floating-point operations} {
  158.     list [catch {expr 24.0^3} msg] $msg
  159. } {1 {can't use floating-point value as operand of "^"}}
  160. # Check the string operators individually.
  161. test expr-old-4.1 {string operators} {expr {"abc" > "def"}} 0
  162. test expr-old-4.2 {string operators} {expr {"def" > "def"}} 0
  163. test expr-old-4.3 {string operators} {expr {"g" > "def"}} 1
  164. test expr-old-4.4 {string operators} {expr {"abc" < "abd"}} 1
  165. test expr-old-4.5 {string operators} {expr {"abd" < "abd"}} 0
  166. test expr-old-4.6 {string operators} {expr {"abe" < "abd"}} 0
  167. test expr-old-4.7 {string operators} {expr {"abc" >= "def"}} 0
  168. test expr-old-4.8 {string operators} {expr {"def" >= "def"}} 1
  169. test expr-old-4.9 {string operators} {expr {"g" >= "def"}} 1
  170. test expr-old-4.10 {string operators} {expr {"abc" <= "abd"}} 1
  171. test expr-old-4.11 {string operators} {expr {"abd" <= "abd"}} 1
  172. test expr-old-4.12 {string operators} {expr {"abe" <= "abd"}} 0
  173. test expr-old-4.13 {string operators} {expr {"abc" == "abd"}} 0
  174. test expr-old-4.14 {string operators} {expr {"abd" == "abd"}} 1
  175. test expr-old-4.15 {string operators} {expr {"abc" != "abd"}} 1
  176. test expr-old-4.16 {string operators} {expr {"abd" != "abd"}} 0
  177. test expr-old-4.17 {string operators} {expr {"0y" < "0x12"}} 0
  178. test expr-old-4.18 {string operators} {expr {"." < " "}} 0
  179. test expr-old-4.19 {string operators} {expr {"abc" eq "abd"}} 0
  180. test expr-old-4.20 {string operators} {expr {"abd" eq "abd"}} 1
  181. test expr-old-4.21 {string operators} {expr {"abc" ne "abd"}} 1
  182. test expr-old-4.22 {string operators} {expr {"abd" ne "abd"}} 0
  183. test expr-old-4.23 {string operators} {expr {"" eq "abd"}} 0
  184. test expr-old-4.24 {string operators} {expr {"" eq ""}} 1
  185. test expr-old-4.25 {string operators} {expr {"abd" ne ""}} 1
  186. test expr-old-4.26 {string operators} {expr {"" ne ""}} 0
  187. test expr-old-4.27 {string operators} {expr {"longerstring" eq "shorter"}} 0
  188. test expr-old-4.28 {string operators} {expr {"longerstring" ne "shorter"}} 1
  189. # The following tests are non-portable because on some systems "+"
  190. # and "-" can be parsed as numbers.
  191. test expr-old-4.29 {string operators} {nonPortable} {expr {"0" == "+"}} 0
  192. test expr-old-4.30 {string operators} {nonPortable} {expr {"0" == "-"}} 0
  193. test expr-old-4.31 {string operators} {expr {1?"foo":"bar"}} foo
  194. test expr-old-4.32 {string operators} {expr {0?"foo":"bar"}} bar
  195. # Operators that aren't legal on string operands.
  196. test expr-old-5.1 {illegal string operations} {
  197.     list [catch {expr {-"a"}} msg] $msg
  198. } {1 {can't use non-numeric string as operand of "-"}}
  199. test expr-old-5.2 {illegal string operations} {
  200.     list [catch {expr {+"a"}} msg] $msg
  201. } {1 {can't use non-numeric string as operand of "+"}}
  202. test expr-old-5.3 {illegal string operations} {
  203.     list [catch {expr {~"a"}} msg] $msg
  204. } {1 {can't use non-numeric string as operand of "~"}}
  205. test expr-old-5.4 {illegal string operations} {
  206.     list [catch {expr {!"a"}} msg] $msg
  207. } {1 {can't use non-numeric string as operand of "!"}}
  208. test expr-old-5.5 {illegal string operations} {
  209.     list [catch {expr {"a"*"b"}} msg] $msg
  210. } {1 {can't use non-numeric string as operand of "*"}}
  211. test expr-old-5.6 {illegal string operations} {
  212.     list [catch {expr {"a"/"b"}} msg] $msg
  213. } {1 {can't use non-numeric string as operand of "/"}}
  214. test expr-old-5.7 {illegal string operations} {
  215.     list [catch {expr {"a"%"b"}} msg] $msg
  216. } {1 {can't use non-numeric string as operand of "%"}}
  217. test expr-old-5.8 {illegal string operations} {
  218.     list [catch {expr {"a"+"b"}} msg] $msg
  219. } {1 {can't use non-numeric string as operand of "+"}}
  220. test expr-old-5.9 {illegal string operations} {
  221.     list [catch {expr {"a"-"b"}} msg] $msg
  222. } {1 {can't use non-numeric string as operand of "-"}}
  223. test expr-old-5.10 {illegal string operations} {
  224.     list [catch {expr {"a"<<"b"}} msg] $msg
  225. } {1 {can't use non-numeric string as operand of "<<"}}
  226. test expr-old-5.11 {illegal string operations} {
  227.     list [catch {expr {"a">>"b"}} msg] $msg
  228. } {1 {can't use non-numeric string as operand of ">>"}}
  229. test expr-old-5.12 {illegal string operations} {
  230.     list [catch {expr {"a"&"b"}} msg] $msg
  231. } {1 {can't use non-numeric string as operand of "&"}}
  232. test expr-old-5.13 {illegal string operations} {
  233.     list [catch {expr {"a"^"b"}} msg] $msg
  234. } {1 {can't use non-numeric string as operand of "^"}}
  235. test expr-old-5.14 {illegal string operations} {
  236.     list [catch {expr {"a"|"b"}} msg] $msg
  237. } {1 {can't use non-numeric string as operand of "|"}}
  238. test expr-old-5.15 {illegal string operations} {
  239.     list [catch {expr {"a"&&"b"}} msg] $msg
  240. } {1 {expected boolean value but got "a"}}
  241. test expr-old-5.16 {illegal string operations} {
  242.     list [catch {expr {"a"||"b"}} msg] $msg
  243. } {1 {expected boolean value but got "a"}}
  244. test expr-old-5.17 {illegal string operations} {
  245.     list [catch {expr {"a"?4:2}} msg] $msg
  246. } {1 {expected boolean value but got "a"}}
  247. # Check precedence pairwise.
  248. test expr-old-6.1 {precedence checks} {expr -~3} 4
  249. test expr-old-6.2 {precedence checks} {expr -!3} 0
  250. test expr-old-6.3 {precedence checks} {expr -~0} 1
  251. test expr-old-7.1 {precedence checks} {expr 2*4/6} 1
  252. test expr-old-7.2 {precedence checks} {expr 24/6*3} 12
  253. test expr-old-7.3 {precedence checks} {expr 24/6/2} 2
  254. test expr-old-8.1 {precedence checks} {expr -2+4} 2
  255. test expr-old-8.2 {precedence checks} {expr -2-4} -6
  256. test expr-old-8.3 {precedence checks} {expr +2-4} -2
  257. test expr-old-9.1 {precedence checks} {expr 2*3+4} 10
  258. test expr-old-9.2 {precedence checks} {expr 8/2+4} 8
  259. test expr-old-9.3 {precedence checks} {expr 8%3+4} 6
  260. test expr-old-9.4 {precedence checks} {expr 2*3-1} 5
  261. test expr-old-9.5 {precedence checks} {expr 8/2-1} 3
  262. test expr-old-9.6 {precedence checks} {expr 8%3-1} 1
  263. test expr-old-10.1 {precedence checks} {expr 6-3-2} 1
  264. test expr-old-11.1 {precedence checks} {expr 7+1>>2} 2
  265. test expr-old-11.2 {precedence checks} {expr 7+1<<2} 32
  266. test expr-old-11.3 {precedence checks} {expr 7>>3-2} 3
  267. test expr-old-11.4 {precedence checks} {expr 7<<3-2} 14
  268. test expr-old-12.1 {precedence checks} {expr 6>>1>4} 0
  269. test expr-old-12.2 {precedence checks} {expr 6>>1<2} 0
  270. test expr-old-12.3 {precedence checks} {expr 6>>1>=3} 1
  271. test expr-old-12.4 {precedence checks} {expr 6>>1<=2} 0
  272. test expr-old-12.5 {precedence checks} {expr 6<<1>5} 1
  273. test expr-old-12.6 {precedence checks} {expr 6<<1<5} 0
  274. test expr-old-12.7 {precedence checks} {expr 5<=6<<1} 1
  275. test expr-old-12.8 {precedence checks} {expr 5>=6<<1} 0
  276. test expr-old-13.1 {precedence checks} {expr 2<3<4} 1
  277. test expr-old-13.2 {precedence checks} {expr 0<4>2} 0
  278. test expr-old-13.3 {precedence checks} {expr 4>2<1} 0
  279. test expr-old-13.4 {precedence checks} {expr 4>3>2} 0
  280. test expr-old-13.5 {precedence checks} {expr 4>3>=2} 0
  281. test expr-old-13.6 {precedence checks} {expr 4>=3>2} 0
  282. test expr-old-13.7 {precedence checks} {expr 4>=3>=2} 0
  283. test expr-old-13.8 {precedence checks} {expr 0<=4>=2} 0
  284. test expr-old-13.9 {precedence checks} {expr 4>=2<=0} 0
  285. test expr-old-13.10 {precedence checks} {expr 2<=3<=4} 1
  286. test expr-old-14.1 {precedence checks} {expr 1==4>3} 1
  287. test expr-old-14.2 {precedence checks} {expr 0!=4>3} 1
  288. test expr-old-14.3 {precedence checks} {expr 1==3<4} 1
  289. test expr-old-14.4 {precedence checks} {expr 0!=3<4} 1
  290. test expr-old-14.5 {precedence checks} {expr 1==4>=3} 1
  291. test expr-old-14.6 {precedence checks} {expr 0!=4>=3} 1
  292. test expr-old-14.7 {precedence checks} {expr 1==3<=4} 1
  293. test expr-old-14.8 {precedence checks} {expr 0!=3<=4} 1
  294. test expr-old-14.9 {precedence checks} {expr 1eq4>3} 1
  295. test expr-old-14.10 {precedence checks} {expr 0ne4>3} 1
  296. test expr-old-14.11 {precedence checks} {expr 1eq3<4} 1
  297. test expr-old-14.12 {precedence checks} {expr 0ne3<4} 1
  298. test expr-old-14.13 {precedence checks} {expr 1eq4>=3} 1
  299. test expr-old-14.14 {precedence checks} {expr 0ne4>=3} 1
  300. test expr-old-14.15 {precedence checks} {expr 1eq3<=4} 1
  301. test expr-old-14.16 {precedence checks} {expr 0ne3<=4} 1
  302. test expr-old-15.1 {precedence checks} {expr 1==3==3} 0
  303. test expr-old-15.2 {precedence checks} {expr 3==3!=2} 1
  304. test expr-old-15.3 {precedence checks} {expr 2!=3==3} 0
  305. test expr-old-15.4 {precedence checks} {expr 2!=1!=1} 0
  306. test expr-old-15.5 {precedence checks} {expr 1eq3eq3} 0
  307. test expr-old-15.6 {precedence checks} {expr 3eq3ne2} 1
  308. test expr-old-15.7 {precedence checks} {expr 2ne3eq3} 0
  309. test expr-old-15.8 {precedence checks} {expr 2ne1ne1} 0
  310. test expr-old-16.1 {precedence checks} {expr 2&3eq2} 0
  311. test expr-old-16.2 {precedence checks} {expr 1&3ne3} 0
  312. test expr-old-16.3 {precedence checks} {expr 2&3eq2} 0
  313. test expr-old-16.4 {precedence checks} {expr 1&3ne3} 0
  314. test expr-old-17.1 {precedence checks} {expr 7&3^0x10} 19
  315. test expr-old-17.2 {precedence checks} {expr 7^0x10&3} 7
  316. test expr-old-18.1 {precedence checks} {expr 7^0x10|3} 23
  317. test expr-old-18.2 {precedence checks} {expr 7|0x10^3} 23
  318. test expr-old-19.1 {precedence checks} {expr 7|3&&1} 1
  319. test expr-old-19.2 {precedence checks} {expr 1&&3|7} 1
  320. test expr-old-19.3 {precedence checks} {expr 0&&1||1} 1
  321. test expr-old-19.4 {precedence checks} {expr 1||1&&0} 1
  322. test expr-old-20.1 {precedence checks} {expr 1||0?3:4} 3
  323. test expr-old-20.2 {precedence checks} {expr 1?0:4||1} 0
  324. test expr-old-20.3 {precedence checks} {expr 1?2:0?3:4} 2
  325. test expr-old-20.4 {precedence checks} {expr 0?2:0?3:4} 4
  326. test expr-old-20.5 {precedence checks} {expr 1?2?3:4:0} 3
  327. test expr-old-20.6 {precedence checks} {expr 0?2?3:4:0} 0
  328. # Parentheses.
  329. test expr-old-21.1 {parenthesization} {expr (2+4)*6} 36
  330. test expr-old-21.2 {parenthesization} {expr (1?0:4)||1} 1
  331. test expr-old-21.3 {parenthesization} {expr +(3-4)} -1
  332. # Embedded commands and variable names.
  333. set a 16 
  334. test expr-old-22.1 {embedded variables} {expr {2*$a}} 32 
  335. test expr-old-22.2 {embedded variables} {
  336.     set x -5
  337.     set y 10
  338.     expr {$x + $y}
  339. } {5} 
  340. test expr-old-22.3 {embedded variables} {
  341.     set x "  -5"
  342.     set y "  +10"
  343.     expr {$x + $y}
  344. } {5}
  345. test expr-old-22.4 {embedded commands and variables} {expr {[set a] - 14}} 2
  346. test expr-old-22.5 {embedded commands and variables} {
  347.     list [catch {expr {12 - [bad_command_name]}} msg] $msg
  348. } {1 {invalid command name "bad_command_name"}}
  349. # Double-quotes and things inside them.
  350. test expr-old-23.1 {double quotes} {expr {"abc"}} abc
  351. test expr-old-23.2 {double quotes} {
  352.     set a 189
  353.     expr {"$a.bc"}
  354. } 189.bc
  355. test expr-old-23.3 {double quotes} {
  356.     set b2 xyx
  357.     expr {"$b2$b2$b2.[set b2].[set b2]"}
  358. } xyxxyxxyx.xyx.xyx
  359. test expr-old-23.4 {double quotes} {expr {"11}}22"}} 11}}22
  360. test expr-old-23.5 {double quotes} {expr {"*bc"}} {*bc}
  361. test expr-old-23.6 {double quotes} {
  362.     catch {unset bogus__}
  363.     list [catch {expr {"$bogus__"}} msg] $msg
  364. } {1 {can't read "bogus__": no such variable}}
  365. test expr-old-23.7 {double quotes} {
  366.     list [catch {expr {"a[error Testing]bc"}} msg] $msg
  367. } {1 Testing}
  368. test expr-old-23.8 {double quotes} {
  369.     list [catch {expr {"12398712938788234-1298379" != ""}} msg] $msg
  370. } {0 1}
  371. # Numbers in various bases.
  372. test expr-old-24.1 {numbers in different bases} {expr 0x20} 32
  373. test expr-old-24.2 {numbers in different bases} {expr 015} 13
  374. # Conversions between various data types.
  375. test expr-old-25.1 {type conversions} {expr 2+2.5} 4.5
  376. test expr-old-25.2 {type conversions} {expr 2.5+2} 4.5
  377. test expr-old-25.3 {type conversions} {expr 2-2.5} -0.5
  378. test expr-old-25.4 {type conversions} {expr 2/2.5} 0.8
  379. test expr-old-25.5 {type conversions} {expr 2>2.5} 0
  380. test expr-old-25.6 {type conversions} {expr 2.5>2} 1
  381. test expr-old-25.7 {type conversions} {expr 2<2.5} 1
  382. test expr-old-25.8 {type conversions} {expr 2>=2.5} 0
  383. test expr-old-25.9 {type conversions} {expr 2<=2.5} 1
  384. test expr-old-25.10 {type conversions} {expr 2==2.5} 0
  385. test expr-old-25.11 {type conversions} {expr 2!=2.5} 1
  386. test expr-old-25.12 {type conversions} {expr 2>"ab"} 0
  387. test expr-old-25.13 {type conversions} {expr {2>" "}} 1
  388. test expr-old-25.14 {type conversions} {expr {"24.1a" > 24.1}} 1
  389. test expr-old-25.15 {type conversions} {expr {24.1 > "24.1a"}} 0
  390. test expr-old-25.16 {type conversions} {expr 2+2.5} 4.5
  391. test expr-old-25.17 {type conversions} {expr 2+2.5} 4.5
  392. test expr-old-25.18 {type conversions} {expr 2.0e2} 200.0
  393. test expr-old-25.19 {type conversions} {eformat} {expr 2.0e15} 2e+15
  394. test expr-old-25.20 {type conversions} {expr 10.0} 10.0
  395. # Various error conditions.
  396. test expr-old-26.1 {error conditions} {
  397.     list [catch {expr 2+"a"} msg] $msg
  398. } {1 {can't use non-numeric string as operand of "+"}}
  399. test expr-old-26.2 {error conditions} {
  400.     list [catch {expr 2+4*} msg] $msg
  401. } {1 {syntax error in expression "2+4*": premature end of expression}}
  402. test expr-old-26.3 {error conditions} {
  403.     list [catch {expr 2+4*(} msg] $msg
  404. } {1 {syntax error in expression "2+4*(": premature end of expression}}
  405. catch {unset _non_existent_}
  406. test expr-old-26.4 {error conditions} {
  407.     list [catch {expr 2+$_non_existent_} msg] $msg
  408. } {1 {can't read "_non_existent_": no such variable}}
  409. set a xx
  410. test expr-old-26.5 {error conditions} {
  411.     list [catch {expr {2+$a}} msg] $msg
  412. } {1 {can't use non-numeric string as operand of "+"}}
  413. test expr-old-26.6 {error conditions} {
  414.     list [catch {expr {2+[set a]}} msg] $msg
  415. } {1 {can't use non-numeric string as operand of "+"}}
  416. test expr-old-26.7 {error conditions} {
  417.     list [catch {expr {2+(4}} msg] $msg
  418. } {1 {syntax error in expression "2+(4": looking for close parenthesis}}
  419. test expr-old-26.8 {error conditions} {
  420.     list [catch {expr 2/0} msg] $msg $errorCode
  421. } {1 {divide by zero} {ARITH DIVZERO {divide by zero}}}
  422. test expr-old-26.9 {error conditions} {
  423.     list [catch {expr 2%0} msg] $msg $errorCode
  424. } {1 {divide by zero} {ARITH DIVZERO {divide by zero}}}
  425. test expr-old-26.10 {error conditions} {
  426.     list [catch {expr 2.0/0.0} msg] $msg $errorCode
  427. } {1 {divide by zero} {ARITH DIVZERO {divide by zero}}}
  428. test expr-old-26.11 {error conditions} {
  429.     list [catch {expr 2#} msg] $msg
  430. } {1 {syntax error in expression "2#": extra tokens at end of expression}}
  431. test expr-old-26.12 {error conditions} {
  432.     list [catch {expr a.b} msg] $msg
  433. } {1 {syntax error in expression "a.b": variable references require preceding $}}
  434. test expr-old-26.13 {error conditions} {
  435.     list [catch {expr {"a"/"b"}} msg] $msg
  436. } {1 {can't use non-numeric string as operand of "/"}}
  437. test expr-old-26.14 {error conditions} {
  438.     list [catch {expr 2:3} msg] $msg
  439. } {1 {syntax error in expression "2:3": extra tokens at end of expression}}
  440. test expr-old-26.15 {error conditions} {
  441.     list [catch {expr a@b} msg] $msg
  442. } {1 {syntax error in expression "a@b": variable references require preceding $}}
  443. test expr-old-26.16 {error conditions} {
  444.     list [catch {expr a[b} msg] $msg
  445. } {1 {missing close-bracket}}
  446. test expr-old-26.17 {error conditions} {
  447.     list [catch {expr a`b} msg] $msg
  448. } {1 {syntax error in expression "a`b": variable references require preceding $}}
  449. test expr-old-26.18 {error conditions} {
  450.     list [catch {expr "a"{b} msg] $msg
  451. } {1 syntax error in expression ""a"{b": extra tokens at end of expression}
  452. test expr-old-26.19 {error conditions} {
  453.     list [catch {expr a} msg] $msg
  454. } {1 {syntax error in expression "a": variable references require preceding $}}
  455. test expr-old-26.20 {error conditions} {
  456.     list [catch expr msg] $msg
  457. } {1 {wrong # args: should be "expr arg ?arg ...?"}}
  458. # Cancelled evaluation.
  459. test expr-old-27.1 {cancelled evaluation} {
  460.     set a 1
  461.     expr {0&&[set a 2]}
  462.     set a
  463. } 1
  464. test expr-old-27.2 {cancelled evaluation} {
  465.     set a 1
  466.     expr {1||[set a 2]}
  467.     set a
  468. } 1
  469. test expr-old-27.3 {cancelled evaluation} {
  470.     set a 1
  471.     expr {0?[set a 2]:1}
  472.     set a
  473. } 1
  474. test expr-old-27.4 {cancelled evaluation} {
  475.     set a 1
  476.     expr {1?2:[set a 2]}
  477.     set a
  478. } 1
  479. catch {unset x}
  480. test expr-old-27.5 {cancelled evaluation} {
  481.     list [catch {expr {[info exists x] && $x}} msg] $msg
  482. } {0 0}
  483. test expr-old-27.6 {cancelled evaluation} {
  484.     list [catch {expr {0 && [concat $x]}} msg] $msg
  485. } {0 0}
  486. test expr-old-27.7 {cancelled evaluation} {
  487.     set one 1
  488.     list [catch {expr {1 || 1/$one}} msg] $msg
  489. } {0 1}
  490. test expr-old-27.8 {cancelled evaluation} {
  491.     list [catch {expr {1 || -"string"}} msg] $msg
  492. } {0 1}
  493. test expr-old-27.9 {cancelled evaluation} {
  494.     list [catch {expr {1 || ("string" * ("x" && "y"))}} msg] $msg
  495. } {0 1}
  496. test expr-old-27.10 {cancelled evaluation} {
  497.     set x -1.0
  498.     list [catch {expr {($x > 0) ? round(log($x)) : 0}} msg] $msg
  499. } {0 0}
  500. test expr-old-27.11 {cancelled evaluation} {
  501.     list [catch {expr {0 && foo}} msg] $msg
  502. } {1 {syntax error in expression "0 && foo": variable references require preceding $}}
  503. test expr-old-27.12 {cancelled evaluation} {
  504.     list [catch {expr {0 ? 1 : foo}} msg] $msg
  505. } {1 {syntax error in expression "0 ? 1 : foo": variable references require preceding $}}
  506. # Tcl_ExprBool as used in "if" statements
  507. test expr-old-28.1 {Tcl_ExprBoolean usage} {
  508.     set a 1
  509.     if {2} {set a 2}
  510.     set a
  511. } 2
  512. test expr-old-28.2 {Tcl_ExprBoolean usage} {
  513.     set a 1
  514.     if {0} {set a 2}
  515.     set a
  516. } 1
  517. test expr-old-28.3 {Tcl_ExprBoolean usage} {
  518.     set a 1
  519.     if {1.2} {set a 2}
  520.     set a
  521. } 2
  522. test expr-old-28.4 {Tcl_ExprBoolean usage} {
  523.     set a 1
  524.     if {-1.1} {set a 2}
  525.     set a
  526. } 2
  527. test expr-old-28.5 {Tcl_ExprBoolean usage} {
  528.     set a 1
  529.     if {0.0} {set a 2}
  530.     set a
  531. } 1
  532. test expr-old-28.6 {Tcl_ExprBoolean usage} {
  533.     set a 1
  534.     if {"YES"} {set a 2}
  535.     set a
  536. } 2
  537. test expr-old-28.7 {Tcl_ExprBoolean usage} {
  538.     set a 1
  539.     if {"no"} {set a 2}
  540.     set a
  541. } 1
  542. test expr-old-28.8 {Tcl_ExprBoolean usage} {
  543.     set a 1
  544.     if {"true"} {set a 2}
  545.     set a
  546. } 2
  547. test expr-old-28.9 {Tcl_ExprBoolean usage} {
  548.     set a 1
  549.     if {"fAlse"} {set a 2}
  550.     set a
  551. } 1
  552. test expr-old-28.10 {Tcl_ExprBoolean usage} {
  553.     set a 1
  554.     if {"on"} {set a 2}
  555.     set a
  556. } 2
  557. test expr-old-28.11 {Tcl_ExprBoolean usage} {
  558.     set a 1
  559.     if {"Off"} {set a 2}
  560.     set a
  561. } 1
  562. test expr-old-28.12 {Tcl_ExprBool usage} {
  563.     list [catch {if {"abc"} {}} msg] $msg
  564. } {1 {expected boolean value but got "abc"}}
  565. test expr-old-28.13 {Tcl_ExprBool usage} {
  566.     list [catch {if {"ogle"} {}} msg] $msg
  567. } {1 {expected boolean value but got "ogle"}}
  568. test expr-old-28.14 {Tcl_ExprBool usage} {
  569.     list [catch {if {"o"} {}} msg] $msg
  570. } {1 {expected boolean value but got "o"}}
  571. # Operands enclosed in braces
  572. test expr-old-29.1 {braces} {expr {{abc}}} abc
  573. test expr-old-29.2 {braces} {expr {{00010}}} 8
  574. test expr-old-29.3 {braces} {expr {{3.1200000}}} 3.12
  575. test expr-old-29.4 {braces} {expr {{a{b}{1 {2 3}}c}}} "a{b}{1 {2 3}}c"
  576. test expr-old-29.5 {braces} {
  577.     list [catch {expr "{abc"} msg] $msg
  578. } {1 {missing close-brace}}
  579. # Very long values
  580. test expr-old-30.1 {long values} {
  581.     set a "0000 1111 2222 3333 4444"
  582.     set a "$a | $a | $a | $a | $a"
  583.     set a "$a || $a || $a || $a || $a"
  584.     expr {$a}
  585. } {0000 1111 2222 3333 4444 | 0000 1111 2222 3333 4444 | 0000 1111 2222 3333 4444 | 0000 1111 2222 3333 4444 | 0000 1111 2222 3333 4444 || 0000 1111 2222 3333 4444 | 0000 1111 2222 3333 4444 | 0000 1111 2222 3333 4444 | 0000 1111 2222 3333 4444 | 0000 1111 2222 3333 4444 || 0000 1111 2222 3333 4444 | 0000 1111 2222 3333 4444 | 0000 1111 2222 3333 4444 | 0000 1111 2222 3333 4444 | 0000 1111 2222 3333 4444 || 0000 1111 2222 3333 4444 | 0000 1111 2222 3333 4444 | 0000 1111 2222 3333 4444 | 0000 1111 2222 3333 4444 | 0000 1111 2222 3333 4444 || 0000 1111 2222 3333 4444 | 0000 1111 2222 3333 4444 | 0000 1111 2222 3333 4444 | 0000 1111 2222 3333 4444 | 0000 1111 2222 3333 4444}
  586. test expr-old-30.2 {long values} {
  587.     set a "000000000000000000000000000000"
  588.     set a "$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a${a}5"
  589.     expr $a
  590. } 5
  591. # Expressions spanning multiple arguments
  592. test expr-old-31.1 {multiple arguments to expr command} {
  593.     expr 4 + ( 6 *12) -3
  594. } 73
  595. test expr-old-31.2 {multiple arguments to expr command} {
  596.     list [catch {expr 2 + (3 + 4} msg] $msg
  597. } {1 {syntax error in expression "2 + (3 + 4": looking for close parenthesis}}
  598. test expr-old-31.3 {multiple arguments to expr command} {
  599.     list [catch {expr 2 + 3 +} msg] $msg
  600. } {1 {syntax error in expression "2 + 3 +": premature end of expression}}
  601. test expr-old-31.4 {multiple arguments to expr command} {
  602.     list [catch {expr 2 + 3 )} msg] $msg
  603. } {1 {syntax error in expression "2 + 3 )": extra tokens at end of expression}}
  604. # Math functions
  605. test expr-old-32.1 {math functions in expressions} {
  606.     format %.6g [expr acos(0.5)]
  607. } {1.0472}
  608. test expr-old-32.2 {math functions in expressions} {
  609.     format %.6g [expr asin(0.5)]
  610. } {0.523599}
  611. test expr-old-32.3 {math functions in expressions} {
  612.     format %.6g [expr atan(1.0)]
  613. } {0.785398}
  614. test expr-old-32.4 {math functions in expressions} {
  615.     format %.6g [expr atan2(2.0, 2.0)]
  616. } {0.785398}
  617. test expr-old-32.5 {math functions in expressions} {
  618.     format %.6g [expr ceil(1.999)]
  619. } {2}
  620. test expr-old-32.6 {math functions in expressions} {
  621.     format %.6g [expr cos(.1)]
  622. } {0.995004}
  623. test expr-old-32.7 {math functions in expressions} {
  624.     format %.6g [expr cosh(.1)]
  625. } {1.005}
  626. test expr-old-32.8 {math functions in expressions} {
  627.     format %.6g [expr exp(1.0)]
  628. } {2.71828}
  629. test expr-old-32.9 {math functions in expressions} {
  630.     format %.6g [expr floor(2.000)]
  631. } {2}
  632. test expr-old-32.10 {math functions in expressions} {
  633.     format %.6g [expr floor(2.001)]
  634. } {2}
  635. test expr-old-32.11 {math functions in expressions} {
  636.     format %.6g [expr fmod(7.3, 3.2)]
  637. } {0.9}
  638. test expr-old-32.12 {math functions in expressions} {
  639.     format %.6g [expr hypot(3.0, 4.0)]
  640. } {5}
  641. test expr-old-32.13 {math functions in expressions} {
  642.     format %.6g [expr log(2.8)]
  643. } {1.02962}
  644. test expr-old-32.14 {math functions in expressions} {
  645.     format %.6g [expr log10(2.8)]
  646. } {0.447158}
  647. test expr-old-32.15 {math functions in expressions} {
  648.     format %.6g [expr pow(2.1, 3.1)]
  649. } {9.97424}
  650. test expr-old-32.16 {math functions in expressions} {
  651.     format %.6g [expr sin(.1)]
  652. } {0.0998334}
  653. test expr-old-32.17 {math functions in expressions} {
  654.     format %.6g [expr sinh(.1)]
  655. } {0.100167}
  656. test expr-old-32.18 {math functions in expressions} {
  657.     format %.6g [expr sqrt(2.0)]
  658. } {1.41421}
  659. test expr-old-32.19 {math functions in expressions} {
  660.     format %.6g [expr tan(0.8)]
  661. } {1.02964}
  662. test expr-old-32.20 {math functions in expressions} {
  663.     format %.6g [expr tanh(0.8)]
  664. } {0.664037}
  665. test expr-old-32.21 {math functions in expressions} {
  666.     format %.6g [expr abs(-1.8)]
  667. } {1.8}
  668. test expr-old-32.22 {math functions in expressions} {
  669.     expr abs(10.0)
  670. } {10.0}
  671. test expr-old-32.23 {math functions in expressions} {
  672.     format %.6g [expr abs(-4)]
  673. } {4}
  674. test expr-old-32.24 {math functions in expressions} {
  675.     format %.6g [expr abs(66)]
  676. } {66}
  677. # The following test is different for 32-bit versus 64-bit architectures.
  678. if {0x80000000 > 0} {
  679.     test expr-old-32.25 {math functions in expressions} {nonPortable} {
  680. list [catch {expr abs(0x8000000000000000)} msg] $msg
  681.     } {1 {integer value too large to represent}}
  682. } else {
  683.     test expr-old-32.25 {math functions in expressions} {nonPortable} {
  684. list [catch {expr abs(0x80000000)} msg] $msg
  685.     } {1 {integer value too large to represent}}
  686. }
  687. test expr-old-32.26 {math functions in expressions} {
  688.     expr double(1)
  689. } {1.0}
  690. test expr-old-32.27 {math functions in expressions} {
  691.     expr double(1.1)
  692. } {1.1}
  693. test expr-old-32.28 {math functions in expressions} {
  694.     expr int(1)
  695. } {1}
  696. test expr-old-32.29 {math functions in expressions} {
  697.     expr int(1.4)
  698. } {1}
  699. test expr-old-32.30 {math functions in expressions} {
  700.     expr int(1.6)
  701. } {1}
  702. test expr-old-32.31 {math functions in expressions} {
  703.     expr int(-1.4)
  704. } {-1}
  705. test expr-old-32.32 {math functions in expressions} {
  706.     expr int(-1.6)
  707. } {-1}
  708. test expr-old-32.33 {math functions in expressions} {
  709.     list [catch {expr int(1e60)} msg] $msg
  710. } {1 {integer value too large to represent}}
  711. test expr-old-32.34 {math functions in expressions} {
  712.     list [catch {expr int(-1e60)} msg] $msg
  713. } {1 {integer value too large to represent}}
  714. test expr-old-32.35 {math functions in expressions} {
  715.     expr round(1.49)
  716. } {1}
  717. test expr-old-32.36 {math functions in expressions} {
  718.     expr round(1.51)
  719. } {2}
  720. test expr-old-32.37 {math functions in expressions} {
  721.     expr round(-1.49)
  722. } {-1}
  723. test expr-old-32.38 {math functions in expressions} {
  724.     expr round(-1.51)
  725. } {-2}
  726. test expr-old-32.39 {math functions in expressions} {
  727.     list [catch {expr round(1e60)} msg] $msg
  728. } {1 {integer value too large to represent}}
  729. test expr-old-32.40 {math functions in expressions} {
  730.     list [catch {expr round(-1e60)} msg] $msg
  731. } {1 {integer value too large to represent}}
  732. test expr-old-32.41 {math functions in expressions} {
  733.     list [catch {expr pow(1.0 + 3.0 - 2, .8 * 5)} msg] $msg
  734. } {0 16.0}
  735. test expr-old-32.42 {math functions in expressions} {
  736.     list [catch {expr hypot(5*.8,3)} msg] $msg
  737. } {0 5.0}
  738. if $gotT1 {
  739.     test expr-old-32.43 {math functions in expressions} {
  740. expr 2*T1()
  741.     } 246
  742.     test expr-old-32.44 {math functions in expressions} {
  743. expr T2()*3
  744.     } 1035
  745. }
  746. test expr-old-32.45 {math functions in expressions} {
  747.     expr (0 <= rand()) && (rand() < 1)
  748. } {1}
  749. test expr-old-32.46 {math functions in expressions} {
  750.     list [catch {expr rand(24)} msg] $msg
  751. } {1 {too many arguments for math function}}
  752. test expr-old-32.47 {math functions in expressions} {
  753.     list [catch {expr srand()} msg] $msg
  754. } {1 {too few arguments for math function}}
  755. test expr-old-32.48 {math functions in expressions} {
  756.     list [catch {expr srand(3.79)} msg] $msg
  757. } {1 {expected integer but got "3.79"}}
  758. test expr-old-32.49 {math functions in expressions} {
  759.     list [catch {expr srand("")} msg] $msg
  760. } {1 {argument to math function didn't have numeric value}}
  761. test expr-old-32.50 {math functions in expressions} {
  762.     set result [expr round(srand(12345) * 1000)]
  763.     for {set i 0} {$i < 10} {incr i} {
  764. lappend result [expr round(rand() * 1000)]
  765.     }
  766.     set result
  767. } {97 834 948 36 12 51 766 585 914 784 333}
  768. test expr-old-32.51 {math functions in expressions} {
  769.     list [catch {expr {srand([lindex "6ty" 0])}} msg] $msg
  770. } {1 {argument to math function didn't have numeric value}}
  771. test expr-old-32.52 {math functions in expressions} {
  772.     expr {srand(int(1<<37)) < 1}
  773. } {1}
  774. test expr-old-32.53 {math functions in expressions} {
  775.     expr {srand((1<<31) - 1) > 0}
  776. } {1}
  777. test expr-old-33.1 {conversions and fancy args to math functions} {
  778.     expr hypot ( 3 , 4 )
  779. } 5.0
  780. test expr-old-33.2 {conversions and fancy args to math functions} {
  781.     expr hypot ( (2.0+1.0) , 4 )
  782. } 5.0
  783. test expr-old-33.3 {conversions and fancy args to math functions} {
  784.     expr hypot ( 3 , (3.0 + 1.0) )
  785. } 5.0
  786. test expr-old-33.4 {conversions and fancy args to math functions} {
  787.     format %.6g [expr cos(acos(0.1))]
  788. } 0.1
  789. test expr-old-34.1 {errors in math functions} {
  790.     list [catch {expr func_2(1.0)} msg] $msg
  791. } {1 {unknown math function "func_2"}}
  792. test expr-old-34.2 {errors in math functions} {
  793.     list [catch {expr func|(1.0)} msg] $msg
  794. } {1 {syntax error in expression "func|(1.0)": variable references require preceding $}}
  795. test expr-old-34.3 {errors in math functions} {
  796.     list [catch {expr {hypot("a b", 2.0)}} msg] $msg
  797. } {1 {argument to math function didn't have numeric value}}
  798. test expr-old-34.4 {errors in math functions} {
  799.     list [catch {expr hypot(1.0 2.0)} msg] $msg
  800. } {1 {syntax error in expression "hypot(1.0 2.0)": missing close parenthesis at end of function call}}
  801. test expr-old-34.5 {errors in math functions} {
  802.     list [catch {expr hypot(1.0, 2.0} msg] $msg
  803. } {1 {syntax error in expression "hypot(1.0, 2.0": missing close parenthesis at end of function call}}
  804. test expr-old-34.6 {errors in math functions} {
  805.     list [catch {expr hypot(1.0 ,} msg] $msg
  806. } {1 {syntax error in expression "hypot(1.0 ,": premature end of expression}}
  807. test expr-old-34.7 {errors in math functions} {
  808.     list [catch {expr hypot(1.0)} msg] $msg
  809. } {1 {too few arguments for math function}}
  810. test expr-old-34.8 {errors in math functions} {
  811.     list [catch {expr hypot(1.0, 2.0, 3.0)} msg] $msg
  812. } {1 {too many arguments for math function}}
  813. test expr-old-34.9 {errors in math functions} {
  814.     list [catch {expr acos(-2.0)} msg] $msg $errorCode
  815. } {1 {domain error: argument not in valid range} {ARITH DOMAIN {domain error: argument not in valid range}}}
  816. test expr-old-34.10 {errors in math functions} {nonPortable} {
  817.     list [catch {expr pow(-3, 1000001)} msg] $msg $errorCode
  818. } {1 {floating-point value too large to represent} {ARITH OVERFLOW {floating-point value too large to represent}}}
  819. test expr-old-34.11 {errors in math functions} {
  820.     list [catch {expr pow(3, 1000001)} msg] $msg $errorCode
  821. } {1 {floating-point value too large to represent} {ARITH OVERFLOW {floating-point value too large to represent}}}
  822. test expr-old-34.12 {errors in math functions} {
  823.     list [catch {expr -14.0*exp(100000)} msg] $msg $errorCode
  824. } {1 {floating-point value too large to represent} {ARITH OVERFLOW {floating-point value too large to represent}}}
  825. test expr-old-34.13 {errors in math functions} {
  826.     list [catch {expr int(1.0e30)} msg] $msg $errorCode
  827. } {1 {integer value too large to represent} {ARITH IOVERFLOW {integer value too large to represent}}}
  828. test expr-old-34.14 {errors in math functions} {
  829.     list [catch {expr int(-1.0e30)} msg] $msg $errorCode
  830. } {1 {integer value too large to represent} {ARITH IOVERFLOW {integer value too large to represent}}}
  831. test expr-old-34.15 {errors in math functions} {
  832.     list [catch {expr round(1.0e30)} msg] $msg $errorCode
  833. } {1 {integer value too large to represent} {ARITH IOVERFLOW {integer value too large to represent}}}
  834. test expr-old-34.16 {errors in math functions} {
  835.     list [catch {expr round(-1.0e30)} msg] $msg $errorCode
  836. } {1 {integer value too large to represent} {ARITH IOVERFLOW {integer value too large to represent}}}
  837. if $gotT1 {
  838.     test expr-old-34.17 {errors in math functions} {
  839. list [catch {expr T1(4)} msg] $msg
  840.     } {1 {too many arguments for math function}}
  841. }
  842. test expr-old-36.1 {ExprLooksLikeInt procedure} -body {
  843.     expr 0289
  844. } -returnCodes error -match glob -result {*invalid octal number*}
  845. test expr-old-36.2 {ExprLooksLikeInt procedure} {
  846.     set x 0289
  847.     list [catch {expr {$x+1}} msg] $msg
  848. } {1 {can't use invalid octal number as operand of "+"}}
  849. test expr-old-36.3 {ExprLooksLikeInt procedure} {
  850.     list [catch {expr 0289.1} msg] $msg
  851. } {0 289.1}
  852. test expr-old-36.4 {ExprLooksLikeInt procedure} {
  853.     set x 0289.1
  854.     list [catch {expr {$x+1}} msg] $msg
  855. } {0 290.1}
  856. test expr-old-36.5 {ExprLooksLikeInt procedure} {
  857.     set x {  +22}
  858.     list [catch {expr {$x+1}} msg] $msg
  859. } {0 23}
  860. test expr-old-36.6 {ExprLooksLikeInt procedure} {
  861.     set x { -22}
  862.     list [catch {expr {$x+1}} msg] $msg
  863. } {0 -21}
  864. test expr-old-36.7 {ExprLooksLikeInt procedure} {nonPortable unixOnly} {
  865.     list [catch {expr nan} msg] $msg
  866. } {1 {domain error: argument not in valid range}}
  867. test expr-old-36.8 {ExprLooksLikeInt procedure} {
  868.     list [catch {expr 78e1} msg] $msg
  869. } {0 780.0}
  870. test expr-old-36.9 {ExprLooksLikeInt procedure} {
  871.     list [catch {expr 24E1} msg] $msg
  872. } {0 240.0}
  873. test expr-old-36.10 {ExprLooksLikeInt procedure} {nonPortable unixOnly} {
  874.     list [catch {expr 78e} msg] $msg
  875. } {1 {syntax error in expression "78e"}}
  876. # test for [Bug #542588]
  877. test expr-old-36.11 {ExprLooksLikeInt procedure} {
  878.     # define a "too large integer"; this one works also for 64bit arith
  879.     set x 665802003400000000000000
  880.     list [catch {expr {$x+1}} msg] $msg
  881. } {1 {can't use integer value too large to represent as operand of "+"}}
  882. # tests for [Bug #587140]
  883. test expr-old-36.12 {ExprLooksLikeInt procedure} {
  884.     set x "10;"
  885.     list [catch {expr {$x+1}} msg] $msg
  886. } {1 {can't use non-numeric string as operand of "+"}}
  887. test expr-old-36.13 {ExprLooksLikeInt procedure} {
  888.     set x " +"
  889.     list [catch {expr {$x+1}} msg] $msg
  890. } {1 {can't use non-numeric string as operand of "+"}}
  891. test expr-old-36.14 {ExprLooksLikeInt procedure} {
  892.     set x "123456789012345678901234567890 "
  893.     list [catch {expr {$x+1}} msg] $msg
  894. } {1 {can't use integer value too large to represent as operand of "+"}}
  895. test expr-old-36.15 {ExprLooksLikeInt procedure} {
  896.     set x "099 "
  897.     list [catch {expr {$x+1}} msg] $msg
  898. } {1 {can't use invalid octal number as operand of "+"}}
  899. test expr-old-36.16 {ExprLooksLikeInt procedure} {
  900.     set x " 0xffffffffffffffffffffffffffffffffffffff  "
  901.     list [catch {expr {$x+1}} msg] $msg
  902. } {1 {can't use integer value too large to represent as operand of "+"}}
  903. if {[info commands testexprlong] == {}} {
  904.     puts "This application hasn't been compiled with the "testexprlong""
  905.     puts "command, so I can't test Tcl_ExprLong etc."
  906. } else {
  907. test expr-old-37.1 {Check that Tcl_ExprLong doesn't modify interpreter result if no error} {
  908.     testexprlong
  909. } {This is a result: 5}
  910. }
  911. if {[info commands testexprstring] == {}} {
  912.     puts "This application hasn't been compiled with the "testexprstring""
  913.     puts "command, so I can't test Tcl_ExprString etc."
  914. } else {
  915. test expr-old-38.1 {Verify Tcl_ExprString's basic operation} {
  916.     list [testexprstring "1+4"] [testexprstring "2*3+4.2"] 
  917.         [catch {testexprstring "1+"} msg] $msg
  918. } {5 10.2 1 {syntax error in expression "1+": premature end of expression}}
  919. }
  920. #
  921. # Test for bug #908375: rounding numbers that do not fit in a
  922. # long but do fit in a wide
  923. #
  924. test expr-old-39.1 {Rounding with wide result} {
  925.     set x 1.0e10
  926.     set y [expr $x + 0.1]
  927.     catch {
  928. set x [list [expr {$x == round($y)}] [expr $x == -round(-$y)]]
  929.     }
  930.     set x
  931. } {1 1}
  932. unset -nocomplain x y
  933. # Special test for Pentium arithmetic bug of 1994:
  934. if {(4195835.0 - (4195835.0/3145727.0)*3145727.0) == 256.0} {
  935.     puts "Warning: this machine contains a defective Pentium processor"
  936.     puts "that performs arithmetic incorrectly.  I recommend that you"
  937.     puts "call Intel customer service immediately at 1-800-628-8686"
  938.     puts "to request a replacement processor."
  939. }
  940. # cleanup
  941. ::tcltest::cleanupTests
  942. return