]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/bc/tests/read.sh
Merge commit '47a52dc4d48f259ab7d9f9ba6b65f4f2331a22dc'
[FreeBSD/FreeBSD.git] / contrib / bc / tests / read.sh
1 #! /bin/sh
2 #
3 # SPDX-License-Identifier: BSD-2-Clause
4 #
5 # Copyright (c) 2018-2021 Gavin D. Howard and contributors.
6 #
7 # Redistribution and use in source and binary forms, with or without
8 # modification, are permitted provided that the following conditions are met:
9 #
10 # * Redistributions of source code must retain the above copyright notice, this
11 #   list of conditions and the following disclaimer.
12 #
13 # * Redistributions in binary form must reproduce the above copyright notice,
14 #   this list of conditions and the following disclaimer in the documentation
15 #   and/or other materials provided with the distribution.
16 #
17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18 # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
21 # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 # POSSIBILITY OF SUCH DAMAGE.
28 #
29
30 set -e
31
32 script="$0"
33 testdir=$(dirname "$script")
34
35 . "$testdir/../functions.sh"
36
37 if [ "$#" -lt 1 ]; then
38         printf 'usage: %s dir [exe [args...]]\n' "$0"
39         printf 'valid dirs are:\n'
40         printf '\n'
41         cat "$testdir/all.txt"
42         printf '\n'
43         exit 1
44 fi
45
46 d="$1"
47 shift
48
49 if [ "$#" -gt 0 ]; then
50         exe="$1"
51         shift
52 else
53         exe="$testdir/../bin/$d"
54 fi
55
56 name="$testdir/$d/read.txt"
57 results="$testdir/$d/read_results.txt"
58 errors="$testdir/$d/read_errors.txt"
59
60 out="$testdir/${d}_outputs/read_results.txt"
61 outdir=$(dirname "$out")
62
63 if [ ! -d "$outdir" ]; then
64         mkdir -p "$outdir"
65 fi
66
67 exebase=$(basename "$exe")
68
69 if [ "$d" = "bc" ]; then
70         options="-lq"
71         halt="halt"
72 else
73         options="-x"
74         halt="q"
75 fi
76
77 if [ "$d" = "bc" ]; then
78         read_call="read()"
79         read_expr="${read_call}\n5+5;"
80 else
81         read_call="?"
82         read_expr="${read_call}"
83 fi
84
85 printf 'Running %s read...' "$d"
86
87 set +e
88
89 while read line; do
90
91         printf '%s\n%s\n' "$read_call" "$line" | "$exe" "$@" "$options" > "$out"
92         checktest "$d" "$?" 'read' "$results" "$out"
93
94 done < "$name"
95
96 printf 'pass\n'
97
98 printf 'Running %s read errors...' "$d"
99
100 while read line; do
101
102         printf '%s\n%s\n' "$read_call" "$line" | "$exe" "$@" "$options" 2> "$out" > /dev/null
103         err="$?"
104
105         checkerrtest "$d" "$err" "$line" "$out" "$exebase"
106
107 done < "$errors"
108
109 printf 'pass\n'
110
111 printf 'Running %s empty read...' "$d"
112
113 read_test=$(printf '%s\n' "$read_call")
114
115 printf '%s\n' "$read_test" | "$exe" "$@" "$opts" 2> "$out" > /dev/null
116 err="$?"
117
118 checkerrtest "$d" "$err" "$read_test" "$out" "$exebase"
119
120 printf 'pass\n'
121
122 printf 'Running %s read EOF...' "$d"
123
124 read_test=$(printf '%s' "$read_call")
125
126 printf '%s' "$read_test" | "$exe" "$@" "$opts" 2> "$out" > /dev/null
127 err="$?"
128
129 checkerrtest "$d" "$err" "$read_test" "$out" "$exebase"
130
131 exec printf 'pass\n'