xref: /freebsd/bin/sh/tests/expansion/arith13.0 (revision 069ac184)
1# Pre-increment and pre-decrement in arithmetic expansion are not in POSIX.
2# Require either an error or a correct implementation.
3
4! (eval 'x=4; [ $((++x)) != 5 ] || [ $x != 5 ]') 2>/dev/null &&
5! (eval 'x=2; [ $((--x)) != 1 ] || [ $x != 1 ]') 2>/dev/null
6