about summary refs log tree commit diff
path: root/Test/07cond.ztst
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>2000-01-19 17:35:54 +0000
committerTanaka Akira <akr@users.sourceforge.net>2000-01-19 17:35:54 +0000
commit31a13a8931c6d662327440edc152eb03da466c45 (patch)
tree1ed98311d11981e291651359802d6b9fd282fcf8 /Test/07cond.ztst
parent377fde4b22ad2ba1cf260a41a22fd4a6c9d9cbdb (diff)
downloadzsh-31a13a8931c6d662327440edc152eb03da466c45.tar.gz
zsh-31a13a8931c6d662327440edc152eb03da466c45.tar.xz
zsh-31a13a8931c6d662327440edc152eb03da466c45.zip
zsh-workers/9367
Diffstat (limited to 'Test/07cond.ztst')
-rw-r--r--Test/07cond.ztst9
1 files changed, 9 insertions, 0 deletions
diff --git a/Test/07cond.ztst b/Test/07cond.ztst
index aba12030b..f4127072f 100644
--- a/Test/07cond.ztst
+++ b/Test/07cond.ztst
@@ -140,3 +140,12 @@
 
   [[ -e /dev/fd/0 ]]
 0:/dev/fd support in conds
+
+  [[ ( -z foo && -z foo ) || -z foo ]]
+1:complex conds with skipping
+
+  [ '' != bar -a '' = '' ]
+0:strings with `[' builtin
+
+  [ `echo 0` -lt `echo 1` ]
+0:substituion in `[' builtin