about summary refs log tree commit diff
path: root/Test/B04read.ztst
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2003-07-09 11:04:01 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2003-07-09 11:04:01 +0000
commit2d2ce4ecc2ee36088df2f4f494e5d335a7359562 (patch)
treeb03647735a3b409af44c1ae95943da15cd8d60c9 /Test/B04read.ztst
parent9deb9a4e9675040e581034e2227397181264ce0b (diff)
downloadzsh-2d2ce4ecc2ee36088df2f4f494e5d335a7359562.tar.gz
zsh-2d2ce4ecc2ee36088df2f4f494e5d335a7359562.tar.xz
zsh-2d2ce4ecc2ee36088df2f4f494e5d335a7359562.zip
18836: read with metafied delimiter didn't work.
Diffstat (limited to 'Test/B04read.ztst')
-rw-r--r--Test/B04read.ztst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Test/B04read.ztst b/Test/B04read.ztst
index 45a3486af..5efbf24ca 100644
--- a/Test/B04read.ztst
+++ b/Test/B04read.ztst
@@ -63,3 +63,9 @@
 0:read with timeout (no waiting should occur)
 >hello
 >0
+
+ print -n 'Testing the\0null hypothesis\0' |
+ while read -d $'\0' line; do print $line; done
+0:read with null delimiter
+>Testing the
+>null hypothesis