xref: /dragonfly/tools/regression/bin/sh/expansion/trim4.0 (revision 3e3895bf4584c1562faf4533cbd97026ee6a8dcf)
1# $FreeBSD: head/bin/sh/tests/expansion/trim4.0 213814 2010-10-13 23:29:09Z obrien $
2
3v1=/homes/SOME_USER
4v2=
5v3=C123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
6
7# Trigger bug in VSTRIMRIGHT processing STADJUST() call in expand.c:subevalvar()
8while [ ${#v2} -lt 2000 ]; do
9          v4="${v2} ${v1%/*} $v3"
10          if [ ${#v4} -ne $((${#v2} + ${#v3} + 8)) ]; then
11                    echo bad: ${#v4} -ne $((${#v2} + ${#v3} + 8))
12          fi
13          v2=x$v2
14          v3=y$v3
15done
16