about summary refs log tree commit diff
path: root/Test/B02typeset.ztst
diff options
context:
space:
mode:
authorBart Schaefer <barts@users.sourceforge.net>2001-10-16 17:19:18 +0000
committerBart Schaefer <barts@users.sourceforge.net>2001-10-16 17:19:18 +0000
commit5437faa28c0cf86c7241f523909ce33ad4839672 (patch)
tree6f18a5cfe4047d32986ff3a7714ec1178929e3c3 /Test/B02typeset.ztst
parent6cdd20e367e465bdc70e0616aa2dfbcfd05b1222 (diff)
downloadzsh-5437faa28c0cf86c7241f523909ce33ad4839672.tar.gz
zsh-5437faa28c0cf86c7241f523909ce33ad4839672.tar.xz
zsh-5437faa28c0cf86c7241f523909ce33ad4839672.zip
Merge assorted patches from the dev. version, as approved by PWS.
Read ChangeLog for details.
Diffstat (limited to 'Test/B02typeset.ztst')
-rw-r--r--Test/B02typeset.ztst10
1 files changed, 5 insertions, 5 deletions
diff --git a/Test/B02typeset.ztst b/Test/B02typeset.ztst
index 2dc015d31..da04a79e2 100644
--- a/Test/B02typeset.ztst
+++ b/Test/B02typeset.ztst
@@ -102,7 +102,7 @@
 
  declare +m
 1:Differences of declare and typeset
-?(eval):1: bad option: -m
+?ZTST_execchunk:2: bad option: -m
 
  scope10
  print $outer
@@ -160,7 +160,7 @@
  r=failure
 1:Readonly declaration
 >success
-?(eval):3: read-only variable: r
+?ZTST_execchunk:2: read-only variable: r
 
  typeset r=success
  readonly r
@@ -168,7 +168,7 @@
  r=failure
 1:Convert to readonly
 >success
-?(eval):4: read-only variable: r
+?ZTST_execchunk:2: read-only variable: r
 
  typeset -gU array
  print $array
@@ -186,7 +186,7 @@
  typeset -T SCALAR array
  typeset +T SCALAR
 1:Untying is prohibited
-?(eval):typeset:2: use unset to remove tied variables
+?ZTST_execchunk:typeset:2: use unset to remove tied variables
 
  OUTER=outer
  scope13
@@ -197,7 +197,7 @@
 
  local array[2]=x
 1:Illegal local array element assignment
-?(eval):local:1: array[2]: can't create local array elements
+?ZTST_execchunk:local:2: array[2]: can't create local array elements
 
  local -a array
  typeset array[1]=a array[2]=b array[3]=c