Lines Matching +full:read +full:- +full:out
3 # SPDX-License-Identifier: BSD-2-Clause
5 # Copyright (c) 2018-2024 Gavin D. Howard and contributors.
26 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 set -e
37 outputdir=${BC_TEST_OUTPUT_DIR:-$testdir}
43 if [ $# -eq 1 ]; then
54 # Command-line processing.
55 if [ "$#" -lt 1 ]; then
63 if [ "$#" -gt 0 ]; then
72 name="$testdir/$d/read.txt"
76 out="$outputdir/${d}_outputs/read_results.txt"
78 outdir=$(dirname "$out")
81 if [ ! -d "$outdir" ]; then
82 mkdir -p "$outdir"
89 options="-lq"
91 read_call="read()"
95 options="-x"
108 printf 'Running %s read...' "$d"
112 # Run read() on every line.
113 while read line; do
115 printf '%s\n%s\n' "$read_call" "$line" | "$exe" "$@" "$options" > "$out"
116 checktest "$d" "$?" 'read' "$results" "$out"
122 printf 'Running %s read multiple...' "$d"
126 # Run multiple read() calls.
127 printf '%s\n' "$read_multiple" | "$exe" "$@" "$options" -e "$read_call" -e "$read_call" -e "$read_call" > "$out"
128 checktest "$d" "$?" 'read multiple' "$multiple_res" "$out"
132 printf 'Running %s read errors...' "$d"
134 # Run read on every line.
135 while read line; do
137 printf '%s\n%s\n' "$read_call" "$line" | "$exe" "$@" "$options" 2> "$out" > /dev/null
140 checkerrtest "$d" "$err" "$line" "$out" "$exebase"
146 printf 'Running %s empty read...' "$d"
150 printf '%s\n' "$read_test" | "$exe" "$@" "$opts" 2> "$out" > /dev/null
153 checkerrtest "$d" "$err" "$read_test" "$out" "$exebase"
157 printf 'Running %s read EOF...' "$d"
161 printf '%s' "$read_test" | "$exe" "$@" "$opts" 2> "$out" > /dev/null
164 checkerrtest "$d" "$err" "$read_test" "$out" "$exebase"