about summary refs log tree commit diff
path: root/Test
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 12:32:03 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 12:32:03 +0000
commit26f2178de2499e0ea9be4631b913c8b893d2f765 (patch)
tree914e5a2e8e3ccb234c5f3614e15f3dbac994498d /Test
parentc4859c6b3f3bf6e3572c55dd2745ce25c9347d5a (diff)
downloadzsh-26f2178de2499e0ea9be4631b913c8b893d2f765.tar.gz
zsh-26f2178de2499e0ea9be4631b913c8b893d2f765.tar.xz
zsh-26f2178de2499e0ea9be4631b913c8b893d2f765.zip
moved to ./Test/C01arith.ztst
Diffstat (limited to 'Test')
-rw-r--r--Test/06arith.ztst90
1 files changed, 0 insertions, 90 deletions
diff --git a/Test/06arith.ztst b/Test/06arith.ztst
deleted file mode 100644
index c72bd5acb..000000000
--- a/Test/06arith.ztst
+++ /dev/null
@@ -1,90 +0,0 @@
-# Tests corresponding to the texinfo node `Arithmetic Evaluation'
-
-%test
-
-  integer light there
-  (( light = 42 )) &&
-  let 'there = light' &&
-  print $(( there ))
-0:basic integer arithmetic
->42
-
-  float light there
-  integer rnd
-  (( light = 3.1415 )) &&
-  let 'there = light' &&
-  print -- $(( rnd = there * 10000 ))
-# save rounding problems by converting to integer
-0:basic floating point arithmetic
->31415
-
-  print $(( 0x10 + 0X01 + 2#1010 ))
-0:base input
->27
-
-  float light
-  (( light = 4 ))
-  print $light
-  typeset -F light
-  print $light
-0:conversion to float
->4.000000000e+00
->4.0000000000
-
-  integer i
-  (( i = 32.5 ))
-  print $i
-0:conversion to int
->32
-
-  integer i
-  (( i = 4 - - 3 * 7 << 1 & 7 ^ 1 | 16 ** 2 ))
-  print $i
-0:precedence (arithmetic)
->1591
-
-  print $(( 1 < 2 || 2 < 2 && 3 > 4 ))
-0:precedence (logical)
->1
-
-  print $(( 1 + 4 ? 3 + 2 ? 4 + 3 ? 5 + 6 ? 4 * 8 : 0 : 0 : 0 : 0 ))
-0:precedence (ternary)
->32
-
-  print $(( 3 ? 2 ))
-1:parsing ternary (1)
-?ZTST_execchunk:2: ':' expected
-
-  print $(( 3 ? 2 : 1 : 4 ))
-1:parsing ternary (2)
-?ZTST_execchunk:2: ':' without '?'
-
-  print $(( 0, 4 ? 3 : 1, 5 ))
-0:comma operator
->5
-
-  foo=000
-  print $(( ##A + ##\C-a + #foo + $#foo ))
-0:#, ## and $#
->117
-
-  integer i
-  (( i = 3 + 5 * 1.75 ))
-  print $i
-0:promotion to float
->11
-
-  typeset x      &&
-  (( x = 3.5 ))  &&
-  print $x       &&
-  (( x = 4 ))    &&
-  print $x
-0:use of scalars to store integers and floats
->3.5
->4
-
-  (( newarray[unsetvar]++ ))
-  (( newarray[unsetvar]++ ))
-  print ${(t)newarray} ${#newarray} ${newarray[1]}
-0:setting array elements in math context
->array 1 2