summary refs log tree commit diff
path: root/bin/1sh/tests/expansion/trim3.0
blob: bc9cd5f0b06f4ee0f905ce663badd24dbb32a3c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# $FreeBSD: releng/12.1/bin/sh/tests/expansion/trim3.0 207127 2010-04-23 17:26:49Z jilles $

e= q='?' a='*' t=texttext s='ast*que?non' p='/et[c]/' w='a b c' b='{{(#)}}'
h='##' c='\\\\'
failures=''
ok=''

testcase() {
	code="$1"
	expected="$2"
	oIFS="$IFS"
	eval "$code"
	IFS='|'
	result="$#|$*"
	IFS="$oIFS"
	if [ "x$result" = "x$expected" ]; then
		ok=x$ok
	else
		failures=x$failures
		echo "For $code, expected $expected actual $result"
	fi
}

# This doesn't make much sense, but it fails in dash so I'm adding it here:
testcase 'set -- "${w%${w#???}}"'		'1|a b'

testcase 'set -- ${p#/et[}'			'1|c]/'
testcase 'set -- "${p#/et[}"'			'1|c]/'
testcase 'set -- "${p%${p#????}}"'		'1|/et['

testcase 'set -- ${b%'\'}\''}'			'1|{{(#)}'

testcase 'set -- ${c#\\}'			'1|\\\'
testcase 'set -- ${c#\\\\}'			'1|\\'
testcase 'set -- ${c#\\\\\\}'			'1|\'
testcase 'set -- ${c#\\\\\\\\}'			'0|'
testcase 'set -- "${c#\\}"'			'1|\\\'
testcase 'set -- "${c#\\\\}"'			'1|\\'
testcase 'set -- "${c#\\\\\\}"'			'1|\'
testcase 'set -- "${c#\\\\\\\\}"'		'1|'
testcase 'set -- "${c#"$c"}"'			'1|'
testcase 'set -- ${c#"$c"}'			'0|'
testcase 'set -- "${c%"$c"}"'			'1|'
testcase 'set -- ${c%"$c"}'			'0|'

test "x$failures" = x