diff options
| author | Tanaka Akira <akr@users.sourceforge.net> | 2000-01-19 17:35:54 +0000 |
|---|---|---|
| committer | Tanaka Akira <akr@users.sourceforge.net> | 2000-01-19 17:35:54 +0000 |
| commit | 31a13a8931c6d662327440edc152eb03da466c45 (patch) | |
| tree | 1ed98311d11981e291651359802d6b9fd282fcf8 /Test | |
| parent | zsh-workers/9361 (diff) | |
| download | zsh-31a13a8931c6d662327440edc152eb03da466c45.tar zsh-31a13a8931c6d662327440edc152eb03da466c45.tar.gz zsh-31a13a8931c6d662327440edc152eb03da466c45.tar.bz2 zsh-31a13a8931c6d662327440edc152eb03da466c45.tar.lz zsh-31a13a8931c6d662327440edc152eb03da466c45.tar.xz zsh-31a13a8931c6d662327440edc152eb03da466c45.tar.zst zsh-31a13a8931c6d662327440edc152eb03da466c45.zip | |
zsh-workers/9367
Diffstat (limited to 'Test')
| -rw-r--r-- | Test/04redirect.ztst | 5 | ||||
| -rw-r--r-- | Test/07cond.ztst | 9 |
2 files changed, 14 insertions, 0 deletions
diff --git a/Test/04redirect.ztst b/Test/04redirect.ztst index 37b0915a0..d7156e856 100644 --- a/Test/04redirect.ztst +++ b/Test/04redirect.ztst @@ -191,6 +191,11 @@ 1:null redir with NULLCMD unset ?ZTST_execchunk:2: redirection with no command + echo this should still work >out1 + print "$(<out1)" +0:null redir in $(...) with NULLCMD unset +>this should still work + READNULLCMD=cat print cat input >out1 <out1 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 |
