1 # $FreeBSD: head/bin/sh/tests/expansion/trim3.0 207127 2010-04-23 17:26:49Z jilles $
3 e= q='?' a='*' t=texttext s='ast*que?non' p='/et[c]/' w='a b c' b='{{(#)}}'
16 if [ "x$result" = "x$expected" ]; then
20 echo "For $code, expected $expected actual $result"
24 # This doesn't make much sense, but it fails in dash so I'm adding it here:
25 testcase 'set -- "${w%${w#???}}"' '1|a b'
27 testcase 'set -- ${p#/et[}' '1|c]/'
28 testcase 'set -- "${p#/et[}"' '1|c]/'
29 testcase 'set -- "${p%${p#????}}"' '1|/et['
31 testcase 'set -- ${b%'\'}\''}' '1|{{(#)}'
33 testcase 'set -- ${c#\\}' '1|\\\'
34 testcase 'set -- ${c#\\\\}' '1|\\'
35 testcase 'set -- ${c#\\\\\\}' '1|\'
36 testcase 'set -- ${c#\\\\\\\\}' '0|'
37 testcase 'set -- "${c#\\}"' '1|\\\'
38 testcase 'set -- "${c#\\\\}"' '1|\\'
39 testcase 'set -- "${c#\\\\\\}"' '1|\'
40 testcase 'set -- "${c#\\\\\\\\}"' '1|'
41 testcase 'set -- "${c#"$c"}"' '1|'
42 testcase 'set -- ${c#"$c"}' '0|'
43 testcase 'set -- "${c%"$c"}"' '1|'
44 testcase 'set -- ${c%"$c"}' '0|'