]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/bc/tests/error.sh
contrib/bc: merge version 5.1.0 from vendor branch
[FreeBSD/FreeBSD.git] / contrib / bc / tests / error.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 script="$0"
31 testdir=$(dirname "$script")
32
33 . "$testdir/../scripts/functions.sh"
34
35 outputdir=${BC_TEST_OUTPUT_DIR:-$testdir}
36
37 # Command-line processing.
38 if [ "$#" -lt 2 ]; then
39         printf 'usage: %s dir test [exec args...]\n' "$script"
40         exit 1
41 else
42         d="$1"
43         shift
44
45         t="$1"
46         shift
47 fi
48
49 if [ "$#" -lt 1 ]; then
50         exe="$testdir/../bin/$d"
51 else
52         exe="$1"
53         shift
54 fi
55
56 # I use these, so unset them to make the tests work.
57 unset BC_ENV_ARGS
58 unset BC_LINE_LENGTH
59 unset DC_ENV_ARGS
60 unset DC_LINE_LENGTH
61
62 out="$outputdir/${d}_outputs/error_results_${t}"
63 outdir=$(dirname "$out")
64
65 # Make sure the directory exists.
66 if [ ! -d "$outdir" ]; then
67         mkdir -p "$outdir"
68 fi
69
70 # Set stuff for the correct calculator.
71 if [ "$d" = "bc" ]; then
72         opts="-l"
73         halt="halt"
74         read_call="read()"
75         read_expr="${read_call}\n5+5;"
76 else
77         opts="-x"
78         halt="q"
79 fi
80
81 testfile="$testdir/$d/errors/$t"
82
83 printf 'Running %s error file %s...' "$d" "$t"
84
85 printf '%s\n' "$halt" | "$exe" "$@" $opts "$testfile" 2> "$out" > /dev/null
86 err="$?"
87
88 checkerrtest "$d" "$err" "$testfile" "$out" "$exebase" > /dev/null
89
90 printf 'pass\n'
91
92 printf 'Running %s error file %s through cat...' "$d" "$t"
93
94 cat "$testfile" | "$exe" "$@" $opts 2> "$out" > /dev/null
95 err="$?"
96
97 checkcrash "$d" "$err" "$testfile"
98
99 printf 'pass\n'