diff options
Diffstat (limited to 'Test/B04read.ztst')
-rw-r--r-- | Test/B04read.ztst | 6 |
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 |