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