about summary refs log tree commit diff
path: root/Test/E01options.ztst
diff options
context:
space:
mode:
authorBarton E. Schaefer <schaefer@zsh.org>2017-10-08 18:08:09 -0700
committerBarton E. Schaefer <schaefer@zsh.org>2017-10-08 18:08:09 -0700
commitb84d69cf5299bf7985b72d25a589b29650cd9b26 (patch)
tree8c264a6e9bbbe18f52c914b14406808e6a9ef419 /Test/E01options.ztst
parent82c26793e4c8e1a9bef7bbc19197db18a9f8d80d (diff)
downloadzsh-b84d69cf5299bf7985b72d25a589b29650cd9b26.tar.gz
zsh-b84d69cf5299bf7985b72d25a589b29650cd9b26.tar.xz
zsh-b84d69cf5299bf7985b72d25a589b29650cd9b26.zip
41828, 41830: skip SHFILEEXPANSION for new nodes added by stringsubst() in prefork()
Diffstat (limited to 'Test/E01options.ztst')
-rw-r--r--Test/E01options.ztst12
1 files changed, 12 insertions, 0 deletions
diff --git a/Test/E01options.ztst b/Test/E01options.ztst
index 8101ff539..6929f5140 100644
--- a/Test/E01options.ztst
+++ b/Test/E01options.ztst
@@ -1026,6 +1026,18 @@
 >$lspath $lspath =
 >$lspath
 
+  () {
+    emulate -L sh
+    v='~/one ~/two'
+    print -l -- $v $v
+  }
+0:SH_FILE_EXPANSION option with GLOB_SUBST et al.
+F:Regression test for workers/41811
+>~/one
+>~/two
+>~/one
+>~/two
+
   testpat() {
     if [[ $1 = ${~2} ]]; then print $1 $2 yes; else print $1 $2 no; fi
   }