diff options
| author | Peter Stephenson <pws@users.sourceforge.net> | 2011-01-10 18:24:17 +0000 |
|---|---|---|
| committer | Peter Stephenson <pws@users.sourceforge.net> | 2011-01-10 18:24:17 +0000 |
| commit | dfc26195c916d54163a3f0dd2eb159db2d974569 (patch) | |
| tree | 641d3f6854623e606edc8938ef296aade5c2b0e9 /Test | |
| parent | make prep depencies: missed ChangeLog entry (diff) | |
| download | zsh-dfc26195c916d54163a3f0dd2eb159db2d974569.tar zsh-dfc26195c916d54163a3f0dd2eb159db2d974569.tar.gz zsh-dfc26195c916d54163a3f0dd2eb159db2d974569.tar.bz2 zsh-dfc26195c916d54163a3f0dd2eb159db2d974569.tar.lz zsh-dfc26195c916d54163a3f0dd2eb159db2d974569.tar.xz zsh-dfc26195c916d54163a3f0dd2eb159db2d974569.tar.zst zsh-dfc26195c916d54163a3f0dd2eb159db2d974569.zip | |
28617: NO_EXEC option was doing too much work in
parameter subscripting, parameter assignment, and globbing
Diffstat (limited to 'Test')
| -rw-r--r-- | Test/E01options.ztst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Test/E01options.ztst b/Test/E01options.ztst index be83ceccd..4b53840c6 100644 --- a/Test/E01options.ztst +++ b/Test/E01options.ztst @@ -344,6 +344,15 @@ 0:NO_EXEC option >before + (setopt noexec + typeset -A hash + hash['this is a string']) +0:NO_EXEC option should not attempt to parse subscripts + + (setopt noexec nomatch + echo *NonExistentFile*) +0:NO_EXEC option should not do globbing + setopt NO_eval_lineno eval 'print $LINENO' setopt eval_lineno |
