]> git.saurik.com Git - apple/shell_cmds.git/blob - sh/tests/expansion/arith3.0
shell_cmds-207.100.1.tar.gz
[apple/shell_cmds.git] / sh / tests / expansion / arith3.0
1 # $FreeBSD: head/bin/sh/tests/expansion/arith3.0 204017 2010-02-17 22:25:22Z jilles $
2
3 failures=0
4
5 check() {
6 if [ $(($1)) != $2 ]; then
7 failures=$((failures+1))
8 echo "For $1, expected $2 actual $(($1))"
9 fi
10 }
11
12 check "1 << 1 + 1 | 1" 5
13
14 exit $((failures != 0))