diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2009-07-10 11:08:39 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2009-07-10 11:08:39 +0000 |
commit | 73be7ee553b1df74bfccb7742c79b620aec828ce (patch) | |
tree | e256c086d56b569273841eb3c93df2070958b1df /Test/A01grammar.ztst | |
parent | bd2ee44b78d4b1ef78eac9a897237d63aecc35d6 (diff) | |
download | zsh-73be7ee553b1df74bfccb7742c79b620aec828ce.tar.gz zsh-73be7ee553b1df74bfccb7742c79b620aec828ce.tar.xz zsh-73be7ee553b1df74bfccb7742c79b620aec828ce.zip |
27106: reset status on command that expands to empty
27122: add POSIX_JOBS option
Diffstat (limited to 'Test/A01grammar.ztst')
-rw-r--r-- | Test/A01grammar.ztst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Test/A01grammar.ztst b/Test/A01grammar.ztst index e976c8356..b250d0984 100644 --- a/Test/A01grammar.ztst +++ b/Test/A01grammar.ztst @@ -23,6 +23,10 @@ true | false 1:Exit status of pipeline with builtins (false) + false + $nonexistent_variable +0:Executing command that evaluates to empty resets status + fn() { local foo; read foo; print $foo; } coproc fn print -p coproc test output |