summaryrefslogtreecommitdiff
path: root/Test/E01options.ztst
diff options
context:
space:
mode:
authorPeter Stephenson <p.w.stephenson@ntlworld.com>2017-08-08 19:04:49 +0100
committerPeter Stephenson <p.w.stephenson@ntlworld.com>2017-08-08 19:04:49 +0100
commita9b579a9d3921c4d843be7a52faeb8a3f3f6c35e (patch)
tree49101e5c9c5d4b94839338ee9b41aa99954d9149 /Test/E01options.ztst
parent2fba415a71dca55158900569b85bc4fabd3c1595 (diff)
downloadzsh-a9b579a9d3921c4d843be7a52faeb8a3f3f6c35e.tar.gz
zsh-a9b579a9d3921c4d843be7a52faeb8a3f3f6c35e.zip
Revert "41499 (with one further tweak): POSIX_STRINGS behaviour."
This reverts commit 2eacbef91913fe967335812900d43cf2edfa54d9. Conflicts: ChangeLog
Diffstat (limited to 'Test/E01options.ztst')
-rw-r--r--Test/E01options.ztst41
1 files changed, 0 insertions, 41 deletions
diff --git a/Test/E01options.ztst b/Test/E01options.ztst
index b394e7cf4..f01d83567 100644
--- a/Test/E01options.ztst
+++ b/Test/E01options.ztst
@@ -1339,44 +1339,3 @@
?(anon):4: `break' active at end of function scope
?(anon):4: `break' active at end of function scope
?(anon):4: `break' active at end of function scope
-
- for opt in POSIX_STRINGS NO_POSIX_STRINGS; do
- var="foo bar "
- (setopt $opt; print -l X "${=var}" Y)
- var="foo2::bar2:"
- (setopt $opt; IFS=:; print -l X "${=var}" Y)
- var="foo3:bar3::"
- (setopt $opt; IFS=:; print -l X "${=var}" Y)
- done
-0:POSIX_STRINGS effect on final delimiters
->X
->foo
->bar
->Y
->X
->foo2
->
->bar2
->Y
->X
->foo3
->bar3
->
->Y
->X
->foo
->bar
->
->Y
->X
->foo2
->
->bar2
->
->Y
->X
->foo3
->bar3
->
->
->Y