blob: a7156e3373a21c07e65712c2e5b1f1833742ef15 (
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
31
32
33
34
35
36
|
# test what happens with multiple defines of a name.
#
# Note that svGetValue() will return "l4x", which
# isn't correct in terms of shell-parsing. But we
# don't consider only line-by-line, thus this is
# expected.
#
# Also note that setting NAME will replace the last
# occurance, and delete all previous once.
#L1
NAME=l2
#L2
NAME=l3
some_key1=''
some_key2=$'\U0x'
some_key3=$'x\U0'
#L4
NAME='
NAME=l4x
'
#Lx-1
NAME2=not-visible
#Lx-2
NAME2='invalid
#Lx-3
#Ly-1
NAME3='invalid
#Ly-2
NAME3=name3-value
#Ly-3
|