summary refs log tree commit diff
path: root/bin/1sh/tests/builtins/read9.0
diff options
context:
space:
mode:
Diffstat (limited to 'bin/1sh/tests/builtins/read9.0')
-rw-r--r--bin/1sh/tests/builtins/read9.010
1 files changed, 0 insertions, 10 deletions
diff --git a/bin/1sh/tests/builtins/read9.0 b/bin/1sh/tests/builtins/read9.0
deleted file mode 100644
index 5c5521db..00000000
--- a/bin/1sh/tests/builtins/read9.0
+++ /dev/null
@@ -1,10 +0,0 @@
-# $FreeBSD: releng/12.1/bin/sh/tests/builtins/read9.0 287308 2015-08-30 17:24:22Z jilles $
-
-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 ." ]