aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/read.in
diff options
context:
space:
mode:
authorGravatar Kevin Ballard <kevin@sb.org>2014-09-21 20:00:26 -0700
committerGravatar Kevin Ballard <kevin@sb.org>2014-09-21 20:00:26 -0700
commita012aedb31b4b959dfd66d6643c43564408a9f00 (patch)
tree67046b85811cf4050b05481c3f7b94976b6014e6 /tests/read.in
parenta9c8b755992703f5499e2da91d50579cbd65046d (diff)
Fix incorrect error on `read` with 1-character input
When `read` is given a single character of input (including the newline), it was bailing as if it had been given no input. This is incorrect.
Diffstat (limited to 'tests/read.in')
-rw-r--r--tests/read.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/read.in b/tests/read.in
index 7cf09112..893797a1 100644
--- a/tests/read.in
+++ b/tests/read.in
@@ -38,6 +38,8 @@ echo 'test' | read -l one two three
print_vars one two three
echo 'foo bar baz' | read -l one two three
print_vars one two three
+echo -n 'a' | read -l one
+echo "$status $one"
echo
set -l IFS