diff options
Diffstat (limited to 'Test')
-rw-r--r-- | Test/B02typeset.ztst | 15 | ||||
-rw-r--r-- | Test/D04parameter.ztst | 27 |
2 files changed, 42 insertions, 0 deletions
diff --git a/Test/B02typeset.ztst b/Test/B02typeset.ztst index 7923ae3a6..13f0d5e30 100644 --- a/Test/B02typeset.ztst +++ b/Test/B02typeset.ztst @@ -778,3 +778,18 @@ >the key >the value >typeset -A keyvalhash=( ['*']='?not_globbed?' ['another key']='another value' ['the key']='the value' ) + + local keyvalarray=(first [2]=second third [6]=sixth seventh [5]=fifth new_sixth) + print -l "${keyvalarray[@]}" +0:mixed syntax [key]=val with normal arrays +>first +>second +>third +> +>fifth +>new_sixth +>seventh + + local -A keyvalhash=(1 one [2]=two 3 three) +1:Mixed syntax with [key]=val not allowed for hash. +?(eval):1: bad [key]=value syntax for associative array diff --git a/Test/D04parameter.ztst b/Test/D04parameter.ztst index 367bca120..abac8f7a0 100644 --- a/Test/D04parameter.ztst +++ b/Test/D04parameter.ztst @@ -2275,3 +2275,30 @@ F:behavior, see http://austingroupbugs.net/view.php?id=888 >third value >4fourth element\ >fourth value + + local keyvalarray + keyvalarray=(first [2]=second third [6]=sixth seventh [5]=fifth new_sixth) + print -l "${keyvalarray[@]}" +0:mixed syntax [key]=val with normal arrays +>first +>second +>third +> +>fifth +>new_sixth +>seventh + + local -A keyvalhash + keyvalhash=(1 one [2]=two 3 three) +1:Mixed syntax with [key]=val not allowed for hash. +?(eval):2: bad [key]=value syntax for associative array + + touch KVA1one KVA2two KVA3three + local keyvalarray + keyvalarray=(KVA* [4]=*) + print -l "${keyvalarray[@]}" +0:Globbing in non-[key]=val parts of mixed syntax. +>KVA1one +>KVA2two +>KVA3three +>* |