From 1aa64814c035cbbdabc32bca9d8616914ae1b449 Mon Sep 17 00:00:00 2001 From: tg Date: Sun, 20 Apr 2008 00:11:29 +0000 Subject: [PATCH] add a test more, except that we cannot fulfil a part of it yet --- check.t | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/check.t b/check.t index 8eaf363..910dfb4 100644 --- a/check.t +++ b/check.t @@ -1,4 +1,4 @@ -# $MirOS: src/bin/mksh/check.t,v 1.179 2008/04/19 23:49:58 tg Exp $ +# $MirOS: src/bin/mksh/check.t,v 1.180 2008/04/20 00:11:29 tg Exp $ # $OpenBSD: bksl-nl.t,v 1.2 2001/01/28 23:04:56 niklas Exp $ # $OpenBSD: history.t,v 1.5 2001/01/28 23:04:56 niklas Exp $ # $OpenBSD: read.t,v 1.3 2003/03/10 03:48:16 david Exp $ @@ -4613,6 +4613,19 @@ stdin: expected-stdout: --- +name: print-nul-chars +description: + Check handling of NUL characters for print and read + note: second line should output “4 3†but we cannot + handle NUL characters in strings yet +stdin: + print $(($(print '<\0>' | wc -c))) + x=$(print '<\0>') + print $(($(print "$x" | wc -c))) ${#x} +expected-stdout: + 4 + 3 2 +--- name: dot-needs-argument description: check Debian #415167 solution: '.' without arguments should fail @@ -4725,6 +4738,8 @@ stdin: { print 'Hello, World!\\\nã“ã‚“ã«ã¡ã¯ï¼' typeset -Uui16 i=0x100 + # change that to 0xFF once we can handle embedded + # NUL characters in strings / here documents while (( i++ < 0x1FF )); do print -n "\x${i#16#1}" done @@ -4791,6 +4806,8 @@ stdin: { print 'Hello, World!\\\nã“ã‚“ã«ã¡ã¯ï¼' typeset -Uui16 i=0x100 + # change that to 0xFF once we can handle embedded + # NUL characters in strings / here documents while (( i++ < 0x1FF )); do print -n "\u${i#16#1}" done