diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2005-10-11 16:48:05 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2005-10-11 16:48:05 +0000 |
commit | cca66ab341ffa330908aa6ea8da03e991aa6903c (patch) | |
tree | 0b15ce734ec264fdd72c27d68e48bc65bdaf6d14 /Test | |
parent | 1eaa7fee0d111b999c44385eb4fda1ad604e3606 (diff) | |
download | zsh-cca66ab341ffa330908aa6ea8da03e991aa6903c.tar.gz zsh-cca66ab341ffa330908aa6ea8da03e991aa6903c.tar.xz zsh-cca66ab341ffa330908aa6ea8da03e991aa6903c.zip |
21862/21863: GLOB_SUBST shouldn't swallow up backslashes in parameter
substitutions that don't match anything.
Diffstat (limited to 'Test')
-rw-r--r-- | Test/D04parameter.ztst | 14 | ||||
-rwxr-xr-x | Test/ztst.zsh | 2 |
2 files changed, 15 insertions, 1 deletions
diff --git a/Test/D04parameter.ztst b/Test/D04parameter.ztst index 3ad19368d..6abba0ab3 100644 --- a/Test/D04parameter.ztst +++ b/Test/D04parameter.ztst @@ -196,6 +196,20 @@ >* boringfile evenmoreboringfile boringfile evenmoreboringfile >boringfile evenmoreboringfile +# The following tests a bug where globsubst didn't preserve +# backslashes when printing out the original string. + str1='\\*\\' + ( + setopt globsubst nonomatch + [[ \\\\ = $str1 ]] && print -r '\\ matched by' $str1 + [[ \\foo\\ = $str1 ]] && print -r '\\foo matched by' $str1 + [[ a\\b\\ = $str1 ]] || print -r 'a\\b not matched by' $str1 + ) +0:globsubst with backslashes +>\\ matched by \\*\\ +>\\foo matched by \\*\\ +>a\\b not matched by \\*\\ + print -l "${$(print one word)}" "${=$(print two words)}" 0:splitting of $(...) inside ${...} >one word diff --git a/Test/ztst.zsh b/Test/ztst.zsh index 0f0c704c7..c0fbc179f 100755 --- a/Test/ztst.zsh +++ b/Test/ztst.zsh @@ -280,7 +280,7 @@ ZTST_diff() { diff_out=$(diff "$@") diff_ret="$?" if [[ "$diff_ret" != "0" ]]; then - echo "$diff_out" + print -r "$diff_out" fi return "$diff_ret" |