about summary refs log tree commit diff
path: root/Test/C01arith.ztst
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2001-07-09 18:31:24 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2001-07-09 18:31:24 +0000
commit7060b34457f579864bddbe1caa3e3cdfea6981e2 (patch)
tree928f53c3e47e536f49beb26ae15a36a41a872c0a /Test/C01arith.ztst
parent4872ed50868379e769ce905a4af3ae7dfcef09d7 (diff)
downloadzsh-7060b34457f579864bddbe1caa3e3cdfea6981e2.tar.gz
zsh-7060b34457f579864bddbe1caa3e3cdfea6981e2.tar.xz
zsh-7060b34457f579864bddbe1caa3e3cdfea6981e2.zip
15334: use string "(eval)" as script name in debugging messages in eval's
Diffstat (limited to 'Test/C01arith.ztst')
-rw-r--r--Test/C01arith.ztst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Test/C01arith.ztst b/Test/C01arith.ztst
index 282877459..80c8a5736 100644
--- a/Test/C01arith.ztst
+++ b/Test/C01arith.ztst
@@ -53,11 +53,11 @@
 
   print $(( 3 ? 2 ))
 1:parsing ternary (1)
-?ZTST_execchunk:1: ':' expected
+?(eval):1: ':' expected
 
   print $(( 3 ? 2 : 1 : 4 ))
 1:parsing ternary (2)
-?ZTST_execchunk:1: ':' without '?'
+?(eval):1: ':' without '?'
 
   print $(( 0, 4 ? 3 : 1, 5 ))
 0:comma operator
@@ -91,7 +91,7 @@
 
   print $(( 13 = 42 ))
 1:bad lvalue
-?ZTST_execchunk:1: lvalue required
+?(eval):1: lvalue required
 
   x=/bar
   (( x = 32 ))