diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2001-07-09 16:41:19 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2001-07-09 16:41:19 +0000 |
commit | cef000cc628ab20603dbfb5eff4d76bbad15e3be (patch) | |
tree | 40a97a12baa2f96cedbc78125a9e7f465f26b0c0 /Test/C01arith.ztst | |
parent | 7457bdc19d9db02070092c6657ffdc2a8fd85fae (diff) | |
download | zsh-cef000cc628ab20603dbfb5eff4d76bbad15e3be.tar.gz zsh-cef000cc628ab20603dbfb5eff4d76bbad15e3be.tar.xz zsh-cef000cc628ab20603dbfb5eff4d76bbad15e3be.zip |
15329: test script changes to go with 15327 LINENO change
Diffstat (limited to 'Test/C01arith.ztst')
-rw-r--r-- | Test/C01arith.ztst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Test/C01arith.ztst b/Test/C01arith.ztst index c32d00209..282877459 100644 --- a/Test/C01arith.ztst +++ b/Test/C01arith.ztst @@ -53,11 +53,11 @@ print $(( 3 ? 2 )) 1:parsing ternary (1) -?ZTST_execchunk:2: ':' expected +?ZTST_execchunk:1: ':' expected print $(( 3 ? 2 : 1 : 4 )) 1:parsing ternary (2) -?ZTST_execchunk:2: ':' without '?' +?ZTST_execchunk:1: ':' without '?' print $(( 0, 4 ? 3 : 1, 5 )) 0:comma operator @@ -91,7 +91,7 @@ print $(( 13 = 42 )) 1:bad lvalue -?ZTST_execchunk:2: lvalue required +?ZTST_execchunk:1: lvalue required x=/bar (( x = 32 )) |