aboutsummaryrefslogblamecommitdiff
path: root/bin/sh/tests/expansion/trim4.0
blob: 1000bd3d0245c19d3652280bb8660be7c768ea3a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                                                                                                                                   
# $FreeBSD$

v1=/homes/SOME_USER
v2=
v3=C123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789

# Trigger bug in VSTRIMRIGHT processing STADJUST() call in expand.c:subevalvar()
while [ ${#v2} -lt 2000 ]; do
	v4="${v2} ${v1%/*} $v3"
	if [ ${#v4} -ne $((${#v2} + ${#v3} + 8)) ]; then
		echo bad: ${#v4} -ne $((${#v2} + ${#v3} + 8))
	fi
	v2=x$v2
	v3=y$v3
done