summary refs log tree commit diff
path: root/bin/cash/tests/expansion/trim9.0
blob: fa32954cab954e46743ba24f65d568adf1712ece (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# $FreeBSD: releng/12.0/bin/sh/tests/expansion/trim9.0 292758 2015-12-26 22:27:48Z jilles $

# POSIX does not specify these but they occasionally occur in the wild.
# This just serves to keep working what currently works.

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
}

testcase 'shift $#; set -- "${*#Q}"'		'1|'
testcase 'shift $#; set -- "${*##Q}"'		'1|'
testcase 'shift $#; set -- "${*%Q}"'		'1|'
testcase 'shift $#; set -- "${*%%Q}"'		'1|'
testcase 'set -- Q R; set -- "${*#Q}"'		'1| R'
testcase 'set -- Q R; set -- "${*##Q}"'		'1| R'
testcase 'set -- Q R; set -- "${*%R}"'		'1|Q '
testcase 'set -- Q R; set -- "${*%%R}"'		'1|Q '
testcase 'set -- Q R; set -- "${*#S}"'		'1|Q R'
testcase 'set -- Q R; set -- "${*##S}"'		'1|Q R'
testcase 'set -- Q R; set -- "${*%S}"'		'1|Q R'
testcase 'set -- Q R; set -- "${*%%S}"'		'1|Q R'
testcase 'set -- Q R; set -- ${*#Q}'		'1|R'
testcase 'set -- Q R; set -- ${*##Q}'		'1|R'
testcase 'set -- Q R; set -- ${*%R}'		'1|Q'
testcase 'set -- Q R; set -- ${*%%R}'		'1|Q'
testcase 'set -- Q R; set -- ${*#S}'		'2|Q|R'
testcase 'set -- Q R; set -- ${*##S}'		'2|Q|R'
testcase 'set -- Q R; set -- ${*%S}'		'2|Q|R'
testcase 'set -- Q R; set -- ${*%%S}'		'2|Q|R'
testcase 'set -- Q R; set -- ${@#Q}'		'1|R'
testcase 'set -- Q R; set -- ${@##Q}'		'1|R'
testcase 'set -- Q R; set -- ${@%R}'		'1|Q'
testcase 'set -- Q R; set -- ${@%%R}'		'1|Q'
testcase 'set -- Q R; set -- ${@#S}'		'2|Q|R'
testcase 'set -- Q R; set -- ${@##S}'		'2|Q|R'
testcase 'set -- Q R; set -- ${@%S}'		'2|Q|R'
testcase 'set -- Q R; set -- ${@%%S}'		'2|Q|R'
testcase 'set -- Q R; set -- "${@#Q}"'		'2||R'
testcase 'set -- Q R; set -- "${@%R}"'		'2|Q|'
testcase 'set -- Q R; set -- "${@%%R}"'		'2|Q|'
testcase 'set -- Q R; set -- "${@#S}"'		'2|Q|R'
testcase 'set -- Q R; set -- "${@##S}"'		'2|Q|R'
testcase 'set -- Q R; set -- "${@%S}"'		'2|Q|R'
testcase 'set -- Q R; set -- "${@%%S}"'		'2|Q|R'

test "x$failures" = x
ecific parts of a file and line numbering is better done by a post-processing tool such as cat -n or producing a two-column HTML <table>. 2019-02-18Add Tag class to hiJune McEnroe 2019-02-17Generate HTML with hi -n -f html -o anchorJune McEnroe Running hi twice to insert stuff between the head and the content is a bit of a hack but oh well. 2019-02-17Add hi -f html -o anchor for line number linksJune McEnroe 2019-02-17Simplify temp trap in upJune McEnroe 2019-02-17Add line numbers to hiJune McEnroe Renames previous -n option to -m to stay consistent with cat -n. Prefixing lines with line numbers affects where the first tab indent ends up relative to the text above it. Not sure if it's worth fixing somehow. 2019-02-17Always split spans after newlinesJune McEnroe Simplifies ANSI and IRC output code, and prepares for line numbered output. 2019-02-15Color format specifiers light cyan in vimJune McEnroe 2019-02-15Highlight Interp as yellowJune McEnroe 2019-02-15Highlight strings in sh command substitutionsJune McEnroe 2019-02-15Add nmap gpJune McEnroe 2019-02-14Avoid newline when copying URL to pasteboardJune McEnroe 2019-02-13Add forgotten "sixth" book of H2G2June McEnroe