aboutsummaryrefslogtreecommitdiff
path: root/bin/sh/tests/builtins/read9.0
diff options
context:
space:
mode:
Diffstat (limited to 'bin/sh/tests/builtins/read9.0')
-rw-r--r--bin/sh/tests/builtins/read9.010
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/sh/tests/builtins/read9.0 b/bin/sh/tests/builtins/read9.0
new file mode 100644
index 000000000000..080549889839
--- /dev/null
+++ b/bin/sh/tests/builtins/read9.0
@@ -0,0 +1,10 @@
+# $FreeBSD$
+
+empty=''
+read a b c <<EOF
+\ \ A B\ \ B C\ \ $empty
+EOF
+read d e <<EOF
+D\ $empty
+EOF
+[ "$a.$b.$c.$d.$e" = " A.B B.C .D ." ]