about summary refs log tree commit diff
path: root/Test/D04parameter.ztst
diff options
context:
space:
mode:
authorPeter Stephenson <pws@zsh.org>2016-11-15 16:01:32 +0000
committerPeter Stephenson <pws@zsh.org>2016-11-15 16:01:32 +0000
commite9dbfa8046e0da6dbb37340df9d3c95f410a713b (patch)
tree121e0b4386c79370a492b21f30520f23b1a7691b /Test/D04parameter.ztst
parent3fd50d06a12da8b4a9b4201272ca1f08fabd415e (diff)
downloadzsh-e9dbfa8046e0da6dbb37340df9d3c95f410a713b.tar.gz
zsh-e9dbfa8046e0da6dbb37340df9d3c95f410a713b.tar.xz
zsh-e9dbfa8046e0da6dbb37340df9d3c95f410a713b.zip
39947: Additional test for array subscripts.
This checks out-of-range multiple subscripts with and without
the (@) flag.
Diffstat (limited to 'Test/D04parameter.ztst')
-rw-r--r--Test/D04parameter.ztst8
1 files changed, 8 insertions, 0 deletions
diff --git a/Test/D04parameter.ztst b/Test/D04parameter.ztst
index 97c8ba3fc..4cbd2fa0f 100644
--- a/Test/D04parameter.ztst
+++ b/Test/D04parameter.ztst
@@ -2041,3 +2041,11 @@
   () { print -r -- "${(q)1}" "${(b)1}" "${(qq)1}" } '=foo'
 0:(q) and (b) quoting deal with the EQUALS option
 >\=foo =foo '=foo'
+
+  args() { print $#; }
+  a=(foo)
+  args "${a[3,-1]}"
+  args "${(@)a[3,-1]}"
+0:Out-of-range multiple array subscripts with quoting, with and without (@)
+>1
+>0