]> git.saurik.com Git - apple/shell_cmds.git/blame - sh/tests/expansion/arith5.0
shell_cmds-203.tar.gz
[apple/shell_cmds.git] / sh / tests / expansion / arith5.0
CommitLineData
deb63bfb 1# $FreeBSD: head/bin/sh/tests/expansion/arith5.0 206168 2010-04-04 16:48:33Z jilles $
71aad674
A
2
3failures=0
4
5check() {
6 if [ "$2" != "$3" ]; then
7 failures=$((failures+1))
8 echo "For $1, expected $3 actual $2"
9 fi
10}
11
12unset a
13check '$((1+${a:-$((7+2))}))' "$((1+${a:-$((7+2))}))" 10
14check '$((1+${a:=$((2+2))}))' "$((1+${a:=$((2+2))}))" 5
15check '$a' "$a" 4
16
17exit $((failures != 0))