about summary refs log tree commit diff
path: root/Test/B04read.ztst
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2005-04-25 10:41:25 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2005-04-25 10:41:25 +0000
commitce49d62d45278b2fe559b180ba6ef870215b2037 (patch)
treed5b0ee4ef352b778648544d39b0327d5620fd95d /Test/B04read.ztst
parentb72a9461856ab0566bd129dab4cf32e8d1dfaf91 (diff)
downloadzsh-ce49d62d45278b2fe559b180ba6ef870215b2037.tar.gz
zsh-ce49d62d45278b2fe559b180ba6ef870215b2037.tar.xz
zsh-ce49d62d45278b2fe559b180ba6ef870215b2037.zip
Test for fix of read with trailing metacharacters
Diffstat (limited to 'Test/B04read.ztst')
-rw-r--r--Test/B04read.ztst7
1 files changed, 7 insertions, 0 deletions
diff --git a/Test/B04read.ztst b/Test/B04read.ztst
index 5efbf24ca..d6b7ce0b1 100644
--- a/Test/B04read.ztst
+++ b/Test/B04read.ztst
@@ -69,3 +69,10 @@
 0:read with null delimiter
 >Testing the
 >null hypothesis
+
+# Note that trailing NULLs are not stripped even if they are in
+# $IFS; only whitespace characters contained in $IFS are stripped.
+ print -n $'Aaargh, I hate nulls.\0\0\0' | read line
+ print ${#line}
+0:read with trailing metafied characters
+>24