]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - tools/regression/bin/sh/expansion/arith3.0
Copy head to stable/9 as part of 9.0-RELEASE release cycle.
[FreeBSD/stable/9.git] / tools / regression / bin / sh / expansion / arith3.0
1 # $FreeBSD$
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))