summaryrefslogtreecommitdiff
path: root/tests/array14.sub
blob: 7715169c3d13d5f1c03676371ae66d4d9104425d (plain)
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
# start at a test suite for negative indexed array subscripts -- post bash-4.2
x=( 0 1 2 3 4 5)
declare -p x

unset 'x[-1]'
declare -p x

unset 'x[-2]'
declare -p x

unset 'x[-10]'

x[-2]=3
declare -p x

x+=( five )
declare -p x
x[-1]=5
declare -p x

x+=( [-1]=foo )
declare -p x

x[-1]=5
declare -p x

x[-2]+=four
declare -p x

echo "strlen(${x[-2]})" = ${#x[-2]}