]> git.saurik.com Git - apple/shell_cmds.git/blame - sh/tests/expansion/trim4.0
shell_cmds-207.11.1.tar.gz
[apple/shell_cmds.git] / sh / tests / expansion / trim4.0
CommitLineData
deb63bfb 1# $FreeBSD: head/bin/sh/tests/expansion/trim4.0 213814 2010-10-13 23:29:09Z obrien $
71aad674
A
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