blob: 87f3c85cb532510fa70c707dfef110c57ad5cdaf [file] [log] [blame]
Gavin Howard7c715d62019-02-20 10:41:08 -07001#! /bin/sh
2#
Gavin Howard29e00ba2020-06-30 09:25:21 -06003# SPDX-License-Identifier: BSD-2-Clause
4#
Gavin Howard4feb7082021-01-26 01:19:25 -07005# Copyright (c) 2018-2021 Gavin D. Howard and contributors.
Gavin Howard7c715d62019-02-20 10:41:08 -07006#
Gavin Howard7345cb92019-04-08 14:13:43 -06007# 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.
Gavin Howard7c715d62019-02-20 10:41:08 -070028#
29
Gavin Howard50080252019-02-20 15:27:43 -070030readlink() {
31
Gavin Howard62421e92019-04-17 12:56:30 -060032 _readlink_f="$1"
Gavin Howard50080252019-02-20 15:27:43 -070033 shift
34
Gavin Howard62421e92019-04-17 12:56:30 -060035 _readlink_arrow="-> "
36 _readlink_d=$(dirname "$_readlink_f")
Gavin Howard50080252019-02-20 15:27:43 -070037
Gavin Howard62421e92019-04-17 12:56:30 -060038 _readlink_lsout=""
39 _readlink_link=""
Gavin Howardaea5bdb2019-04-09 09:01:15 -060040
Gavin Howard62421e92019-04-17 12:56:30 -060041 _readlink_lsout=$(ls -dl "$_readlink_f")
42 _readlink_link=$(printf '%s' "${_readlink_lsout#*$_readlink_arrow}")
Gavin Howardaea5bdb2019-04-09 09:01:15 -060043
Gavin Howard62421e92019-04-17 12:56:30 -060044 while [ -z "${_readlink_lsout##*$_readlink_arrow*}" ]; do
45 _readlink_f="$_readlink_d/$_readlink_link"
46 _readlink_d=$(dirname "$_readlink_f")
47 _readlink_lsout=$(ls -dl "$_readlink_f")
48 _readlink_link=$(printf '%s' "${_readlink_lsout#*$_readlink_arrow}")
Gavin Howardaea5bdb2019-04-09 09:01:15 -060049 done
50
Gavin Howard62421e92019-04-17 12:56:30 -060051 printf '%s' "${_readlink_f##*$_readlink_d/}"
Gavin Howard50080252019-02-20 15:27:43 -070052}
53
Gavin Howard8237f802019-04-11 12:23:03 -060054err_exit() {
55
56 if [ "$#" -ne 2 ]; then
57 printf 'Invalid number of args to err_exit\n'
58 exit 1
59 fi
60
61 printf '%s\n' "$1"
Gavin Howard8237f802019-04-11 12:23:03 -060062 exit "$2"
63}
64
Gavin Howardb0c6bf82021-01-29 13:02:21 -070065checktest_retcode() {
66
67 _checktest_retcode_d="$1"
68 shift
69
70 _checktest_retcode_err="$1"
71 shift
72
73 _checktest_retcode_name="$1"
74 shift
75
76 if [ "$_checktest_retcode_err" -ne 0 ]; then
77 printf 'FAIL!!!\n'
78 err_exit "$_checktest_retcode_d failed test '$_checktest_retcode_name' with error code $_checktest_retcode_err" 1
79 fi
80}
81
82checktest() {
83
84 _checktest_d="$1"
85 shift
86
87 _checktest_err="$1"
88 shift
89
90 _checktest_name="$1"
91 shift
92
93 _checktest_test_path="$1"
94 shift
95
96 _checktest_results_name="$1"
97 shift
98
99 checktest_retcode "$_checktest_d" "$_checktest_err" "$_checktest_name"
100
101 _checktest_diff=$(diff "$_checktest_test_path" "$_checktest_results_name")
102
103 _checktest_err="$?"
104
105 if [ "$_checktest_err" -ne 0 ]; then
106 printf 'FAIL!!!\n'
107 printf '%s\n' "$_checktest_diff"
108 err_exit "$_checktest_d failed test $_checktest_name" 1
109 fi
110}
111
Gavin Howard7c715d62019-02-20 10:41:08 -0700112die() {
113
Gavin Howard62421e92019-04-17 12:56:30 -0600114 _die_d="$1"
Gavin Howard7c715d62019-02-20 10:41:08 -0700115 shift
116
Gavin Howard62421e92019-04-17 12:56:30 -0600117 _die_msg="$1"
Gavin Howard7c715d62019-02-20 10:41:08 -0700118 shift
119
Gavin Howard62421e92019-04-17 12:56:30 -0600120 _die_name="$1"
Gavin Howard7c715d62019-02-20 10:41:08 -0700121 shift
122
Gavin Howard62421e92019-04-17 12:56:30 -0600123 _die_err="$1"
Gavin Howard7c715d62019-02-20 10:41:08 -0700124 shift
125
Gavin Howard62421e92019-04-17 12:56:30 -0600126 _die_str=$(printf '\n%s %s on test:\n\n %s\n' "$_die_d" "$_die_msg" "$_die_name")
Gavin Howard8237f802019-04-11 12:23:03 -0600127
Gavin Howard62421e92019-04-17 12:56:30 -0600128 err_exit "$_die_str" "$_die_err"
Gavin Howard7c715d62019-02-20 10:41:08 -0700129}
130
131checkcrash() {
132
Gavin Howard62421e92019-04-17 12:56:30 -0600133 _checkcrash_d="$1"
Gavin Howard7c715d62019-02-20 10:41:08 -0700134 shift
135
Gavin Howard62421e92019-04-17 12:56:30 -0600136 _checkcrash_error="$1"
Gavin Howard7c715d62019-02-20 10:41:08 -0700137 shift
138
Gavin Howard62421e92019-04-17 12:56:30 -0600139 _checkcrash_name="$1"
140 shift
141
142 if [ "$_checkcrash_error" -gt 127 ]; then
143 die "$_checkcrash_d" "crashed ($_checkcrash_error)" \
144 "$_checkcrash_name" "$_checkcrash_error"
Gavin Howard7c715d62019-02-20 10:41:08 -0700145 fi
146}
147
Gavin Howardb0c6bf82021-01-29 13:02:21 -0700148checkerrtest()
Gavin Howard7c715d62019-02-20 10:41:08 -0700149{
Gavin Howardb0c6bf82021-01-29 13:02:21 -0700150 _checkerrtest_d="$1"
Gavin Howard7c715d62019-02-20 10:41:08 -0700151 shift
152
Gavin Howardb0c6bf82021-01-29 13:02:21 -0700153 _checkerrtest_error="$1"
Gavin Howard7c715d62019-02-20 10:41:08 -0700154 shift
155
Gavin Howardb0c6bf82021-01-29 13:02:21 -0700156 _checkerrtest_name="$1"
Gavin Howard7c715d62019-02-20 10:41:08 -0700157 shift
158
Gavin Howardb0c6bf82021-01-29 13:02:21 -0700159 _checkerrtest_out="$1"
Gavin Howard7c715d62019-02-20 10:41:08 -0700160 shift
161
Gavin Howardb0c6bf82021-01-29 13:02:21 -0700162 _checkerrtest_exebase="$1"
Gavin Howard62421e92019-04-17 12:56:30 -0600163 shift
Gavin Howard7c715d62019-02-20 10:41:08 -0700164
Gavin Howardb0c6bf82021-01-29 13:02:21 -0700165 checkcrash "$_checkerrtest_d" "$_checkerrtest_error" "$_checkerrtest_name"
Gavin Howard62421e92019-04-17 12:56:30 -0600166
Gavin Howardb0c6bf82021-01-29 13:02:21 -0700167 if [ "$_checkerrtest_error" -eq 0 ]; then
168 die "$_checkerrtest_d" "returned no error" "$_checkerrtest_name" 127
Gavin Howard7c715d62019-02-20 10:41:08 -0700169 fi
170
Gavin Howardb0c6bf82021-01-29 13:02:21 -0700171 if [ "$_checkerrtest_error" -eq 100 ]; then
Gavin Howard7c715d62019-02-20 10:41:08 -0700172
Gavin Howardb0c6bf82021-01-29 13:02:21 -0700173 _checkerrtest_output=$(cat "$_checkerrtest_out")
174 _checkerrtest_fatal_error="Fatal error"
Gavin Howard7c715d62019-02-20 10:41:08 -0700175
Gavin Howardb0c6bf82021-01-29 13:02:21 -0700176 if [ "${_checkerrtest_output##*$_checkerrtest_fatal_error*}" ]; then
177 printf "%s\n" "$_checkerrtest_output"
178 die "$_checkerrtest_d" "had memory errors on a non-fatal error" \
179 "$_checkerrtest_name" "$_checkerrtest_error"
Gavin Howard7c715d62019-02-20 10:41:08 -0700180 fi
181 fi
182
Gavin Howardb0c6bf82021-01-29 13:02:21 -0700183 if [ ! -s "$_checkerrtest_out" ]; then
184 die "$_checkerrtest_d" "produced no error message" "$_checkerrtest_name" "$_checkerrtest_error"
Gavin Howard7c715d62019-02-20 10:41:08 -0700185 fi
186
187 # Display the error messages if not directly running exe.
188 # This allows the script to print valgrind output.
Gavin Howardb0c6bf82021-01-29 13:02:21 -0700189 if [ "$_checkerrtest_exebase" != "bc" -a "$_checkerrtest_exebase" != "dc" ]; then
190 cat "$_checkerrtest_out"
Gavin Howard7c715d62019-02-20 10:41:08 -0700191 fi
192}
Gavin Howard2425bf22019-04-08 17:05:45 -0600193
194substring_replace() {
195
Gavin Howard62421e92019-04-17 12:56:30 -0600196 _substring_replace_str="$1"
Gavin Howardaea5bdb2019-04-09 09:01:15 -0600197 shift
Gavin Howard2425bf22019-04-08 17:05:45 -0600198
Gavin Howard62421e92019-04-17 12:56:30 -0600199 _substring_replace_needle="$1"
Gavin Howardaea5bdb2019-04-09 09:01:15 -0600200 shift
201
Gavin Howard62421e92019-04-17 12:56:30 -0600202 _substring_replace_replacement="$1"
Gavin Howardaea5bdb2019-04-09 09:01:15 -0600203 shift
Gavin Howard2425bf22019-04-08 17:05:45 -0600204
Zach van Rijn579518c2020-01-14 21:56:45 +0000205 _substring_replace_result=$(printf '%s\n' "$_substring_replace_str" | \
Gavin Howard62421e92019-04-17 12:56:30 -0600206 sed -e "s!$_substring_replace_needle!$_substring_replace_replacement!g")
Gavin Howard2425bf22019-04-08 17:05:45 -0600207
Zach van Rijn579518c2020-01-14 21:56:45 +0000208 printf '%s' "$_substring_replace_result"
Gavin Howard2425bf22019-04-08 17:05:45 -0600209}
Gavin Howardaea5bdb2019-04-09 09:01:15 -0600210
211gen_nlspath() {
212
Gavin Howard62421e92019-04-17 12:56:30 -0600213 _gen_nlspath_nlspath="$1"
Gavin Howardaea5bdb2019-04-09 09:01:15 -0600214 shift
215
Gavin Howard62421e92019-04-17 12:56:30 -0600216 _gen_nlspath_locale="$1"
Gavin Howardaea5bdb2019-04-09 09:01:15 -0600217 shift
218
Gavin Howard62421e92019-04-17 12:56:30 -0600219 _gen_nlspath_execname="$1"
Gavin Howardaea5bdb2019-04-09 09:01:15 -0600220 shift
221
Gavin Howard62421e92019-04-17 12:56:30 -0600222 _gen_nlspath_char="@"
223 _gen_nlspath_modifier="${_gen_nlspath_locale#*$_gen_nlspath_char}"
224 _gen_nlspath_tmplocale="${_gen_nlspath_locale%%$_gen_nlspath_char*}"
Gavin Howardaea5bdb2019-04-09 09:01:15 -0600225
Gavin Howard62421e92019-04-17 12:56:30 -0600226 _gen_nlspath_char="."
227 _gen_nlspath_charset="${_gen_nlspath_tmplocale#*$_gen_nlspath_char}"
228 _gen_nlspath_tmplocale="${_gen_nlspath_tmplocale%%$_gen_nlspath_char*}"
Gavin Howardaea5bdb2019-04-09 09:01:15 -0600229
Gavin Howard62421e92019-04-17 12:56:30 -0600230 if [ "$_gen_nlspath_charset" = "$_gen_nlspath_tmplocale" ]; then
231 _gen_nlspath_charset=""
Gavin Howardaea5bdb2019-04-09 09:01:15 -0600232 fi
233
Gavin Howard62421e92019-04-17 12:56:30 -0600234 _gen_nlspath_char="_"
235 _gen_nlspath_territory="${_gen_nlspath_tmplocale#*$_gen_nlspath_char}"
236 _gen_nlspath_language="${_gen_nlspath_tmplocale%%$_gen_nlspath_char*}"
Gavin Howardaea5bdb2019-04-09 09:01:15 -0600237
Gavin Howard62421e92019-04-17 12:56:30 -0600238 if [ "$_gen_nlspath_territory" = "$_gen_nlspath_tmplocale" ]; then
239 _gen_nlspath_territory=""
Gavin Howardaea5bdb2019-04-09 09:01:15 -0600240 fi
241
Gavin Howard62421e92019-04-17 12:56:30 -0600242 if [ "$_gen_nlspath_language" = "$_gen_nlspath_tmplocale" ]; then
243 _gen_nlspath_language=""
Gavin Howardaea5bdb2019-04-09 09:01:15 -0600244 fi
245
Gavin Howard62421e92019-04-17 12:56:30 -0600246 _gen_nlspath_needles="%%:%L:%N:%l:%t:%c"
Gavin Howardaea5bdb2019-04-09 09:01:15 -0600247
Gavin Howard62421e92019-04-17 12:56:30 -0600248 _gen_nlspath_needles=$(printf '%s' "$_gen_nlspath_needles" | tr ':' '\n')
Gavin Howardaea5bdb2019-04-09 09:01:15 -0600249
Gavin Howard62421e92019-04-17 12:56:30 -0600250 for _gen_nlspath_i in $_gen_nlspath_needles; do
251 _gen_nlspath_nlspath=$(substring_replace "$_gen_nlspath_nlspath" "$_gen_nlspath_i" "|$_gen_nlspath_i|")
Gavin Howardaea5bdb2019-04-09 09:01:15 -0600252 done
253
Gavin Howard62421e92019-04-17 12:56:30 -0600254 _gen_nlspath_nlspath=$(substring_replace "$_gen_nlspath_nlspath" "%%" "%")
255 _gen_nlspath_nlspath=$(substring_replace "$_gen_nlspath_nlspath" "%L" "$_gen_nlspath_locale")
256 _gen_nlspath_nlspath=$(substring_replace "$_gen_nlspath_nlspath" "%N" "$_gen_nlspath_execname")
257 _gen_nlspath_nlspath=$(substring_replace "$_gen_nlspath_nlspath" "%l" "$_gen_nlspath_language")
258 _gen_nlspath_nlspath=$(substring_replace "$_gen_nlspath_nlspath" "%t" "$_gen_nlspath_territory")
259 _gen_nlspath_nlspath=$(substring_replace "$_gen_nlspath_nlspath" "%c" "$_gen_nlspath_charset")
Gavin Howardaea5bdb2019-04-09 09:01:15 -0600260
Gavin Howard62421e92019-04-17 12:56:30 -0600261 _gen_nlspath_nlspath=$(printf '%s' "$_gen_nlspath_nlspath" | tr -d '|')
Gavin Howardaea5bdb2019-04-09 09:01:15 -0600262
Gavin Howard62421e92019-04-17 12:56:30 -0600263 printf '%s' "$_gen_nlspath_nlspath"
Gavin Howardaea5bdb2019-04-09 09:01:15 -0600264}