1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-18 02:19:39 +00:00
freebsd/bin/sh/tests/expansion/trim3.0
Warner Losh d0b2dbfa0e Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
2023-08-16 11:55:03 -06:00

46 lines
1.1 KiB
Plaintext

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