Gavin Howard | 7c715d6 | 2019-02-20 10:41:08 -0700 | [diff] [blame] | 1 | #! /bin/sh |
| 2 | # |
Zach van Rijn | 6d2cf3f | 2020-01-14 22:05:02 +0000 | [diff] [blame^] | 3 | # Copyright (c) 2018-2020 Gavin D. Howard and contributors. |
Gavin Howard | 7c715d6 | 2019-02-20 10:41:08 -0700 | [diff] [blame] | 4 | # |
Gavin Howard | 7345cb9 | 2019-04-08 14:13:43 -0600 | [diff] [blame] | 5 | # All rights reserved. |
Gavin Howard | 7c715d6 | 2019-02-20 10:41:08 -0700 | [diff] [blame] | 6 | # |
Gavin Howard | 7345cb9 | 2019-04-08 14:13:43 -0600 | [diff] [blame] | 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. |
Gavin Howard | 7c715d6 | 2019-02-20 10:41:08 -0700 | [diff] [blame] | 28 | # |
| 29 | |
Gavin Howard | 5008025 | 2019-02-20 15:27:43 -0700 | [diff] [blame] | 30 | readlink() { |
| 31 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 32 | _readlink_f="$1" |
Gavin Howard | 5008025 | 2019-02-20 15:27:43 -0700 | [diff] [blame] | 33 | shift |
| 34 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 35 | _readlink_arrow="-> " |
| 36 | _readlink_d=$(dirname "$_readlink_f") |
Gavin Howard | 5008025 | 2019-02-20 15:27:43 -0700 | [diff] [blame] | 37 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 38 | _readlink_lsout="" |
| 39 | _readlink_link="" |
Gavin Howard | aea5bdb | 2019-04-09 09:01:15 -0600 | [diff] [blame] | 40 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 41 | _readlink_lsout=$(ls -dl "$_readlink_f") |
| 42 | _readlink_link=$(printf '%s' "${_readlink_lsout#*$_readlink_arrow}") |
Gavin Howard | aea5bdb | 2019-04-09 09:01:15 -0600 | [diff] [blame] | 43 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 44 | 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 Howard | aea5bdb | 2019-04-09 09:01:15 -0600 | [diff] [blame] | 49 | done |
| 50 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 51 | printf '%s' "${_readlink_f##*$_readlink_d/}" |
Gavin Howard | 5008025 | 2019-02-20 15:27:43 -0700 | [diff] [blame] | 52 | } |
| 53 | |
Gavin Howard | 8237f80 | 2019-04-11 12:23:03 -0600 | [diff] [blame] | 54 | err_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" |
| 62 | printf '\nexiting...\n' |
| 63 | exit "$2" |
| 64 | } |
| 65 | |
Gavin Howard | 7c715d6 | 2019-02-20 10:41:08 -0700 | [diff] [blame] | 66 | die() { |
| 67 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 68 | _die_d="$1" |
Gavin Howard | 7c715d6 | 2019-02-20 10:41:08 -0700 | [diff] [blame] | 69 | shift |
| 70 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 71 | _die_msg="$1" |
Gavin Howard | 7c715d6 | 2019-02-20 10:41:08 -0700 | [diff] [blame] | 72 | shift |
| 73 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 74 | _die_name="$1" |
Gavin Howard | 7c715d6 | 2019-02-20 10:41:08 -0700 | [diff] [blame] | 75 | shift |
| 76 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 77 | _die_err="$1" |
Gavin Howard | 7c715d6 | 2019-02-20 10:41:08 -0700 | [diff] [blame] | 78 | shift |
| 79 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 80 | _die_str=$(printf '\n%s %s on test:\n\n %s\n' "$_die_d" "$_die_msg" "$_die_name") |
Gavin Howard | 8237f80 | 2019-04-11 12:23:03 -0600 | [diff] [blame] | 81 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 82 | err_exit "$_die_str" "$_die_err" |
Gavin Howard | 7c715d6 | 2019-02-20 10:41:08 -0700 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | checkcrash() { |
| 86 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 87 | _checkcrash_d="$1" |
Gavin Howard | 7c715d6 | 2019-02-20 10:41:08 -0700 | [diff] [blame] | 88 | shift |
| 89 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 90 | _checkcrash_error="$1" |
Gavin Howard | 7c715d6 | 2019-02-20 10:41:08 -0700 | [diff] [blame] | 91 | shift |
| 92 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 93 | _checkcrash_name="$1" |
| 94 | shift |
| 95 | |
| 96 | if [ "$_checkcrash_error" -gt 127 ]; then |
| 97 | die "$_checkcrash_d" "crashed ($_checkcrash_error)" \ |
| 98 | "$_checkcrash_name" "$_checkcrash_error" |
Gavin Howard | 7c715d6 | 2019-02-20 10:41:08 -0700 | [diff] [blame] | 99 | fi |
| 100 | } |
| 101 | |
| 102 | checktest() |
| 103 | { |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 104 | _checktest_d="$1" |
Gavin Howard | 7c715d6 | 2019-02-20 10:41:08 -0700 | [diff] [blame] | 105 | shift |
| 106 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 107 | _checktest_error="$1" |
Gavin Howard | 7c715d6 | 2019-02-20 10:41:08 -0700 | [diff] [blame] | 108 | shift |
| 109 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 110 | _checktest_name="$1" |
Gavin Howard | 7c715d6 | 2019-02-20 10:41:08 -0700 | [diff] [blame] | 111 | shift |
| 112 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 113 | _checktest_out="$1" |
Gavin Howard | 7c715d6 | 2019-02-20 10:41:08 -0700 | [diff] [blame] | 114 | shift |
| 115 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 116 | _checktest_exebase="$1" |
| 117 | shift |
Gavin Howard | 7c715d6 | 2019-02-20 10:41:08 -0700 | [diff] [blame] | 118 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 119 | checkcrash "$_checktest_d" "$_checktest_error" "$_checktest_name" |
| 120 | |
| 121 | if [ "$_checktest_error" -eq 0 ]; then |
| 122 | die "$_checktest_d" "returned no error" "$_checktest_name" 127 |
Gavin Howard | 7c715d6 | 2019-02-20 10:41:08 -0700 | [diff] [blame] | 123 | fi |
| 124 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 125 | if [ "$_checktest_error" -eq 100 ]; then |
Gavin Howard | 7c715d6 | 2019-02-20 10:41:08 -0700 | [diff] [blame] | 126 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 127 | _checktest_output=$(cat "$_checktest_out") |
| 128 | _checktest_fatal_error="Fatal error" |
Gavin Howard | 7c715d6 | 2019-02-20 10:41:08 -0700 | [diff] [blame] | 129 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 130 | if [ "${_checktest_output##*$_checktest_fatal_error*}" ]; then |
| 131 | printf "%s\n" "$_checktest_output" |
| 132 | die "$_checktest_d" "had memory errors on a non-fatal error" \ |
| 133 | "$_checktest_name" "$_checktest_error" |
Gavin Howard | 7c715d6 | 2019-02-20 10:41:08 -0700 | [diff] [blame] | 134 | fi |
| 135 | fi |
| 136 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 137 | if [ ! -s "$_checktest_out" ]; then |
| 138 | die "$_checktest_d" "produced no error message" "$_checktest_name" "$_checktest_error" |
Gavin Howard | 7c715d6 | 2019-02-20 10:41:08 -0700 | [diff] [blame] | 139 | fi |
| 140 | |
| 141 | # Display the error messages if not directly running exe. |
| 142 | # This allows the script to print valgrind output. |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 143 | if [ "$_checktest_exebase" != "bc" -a "$_checktest_exebase" != "dc" ]; then |
| 144 | cat "$_checktest_out" |
Gavin Howard | 7c715d6 | 2019-02-20 10:41:08 -0700 | [diff] [blame] | 145 | fi |
| 146 | } |
Gavin Howard | 2425bf2 | 2019-04-08 17:05:45 -0600 | [diff] [blame] | 147 | |
| 148 | substring_replace() { |
| 149 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 150 | _substring_replace_str="$1" |
Gavin Howard | aea5bdb | 2019-04-09 09:01:15 -0600 | [diff] [blame] | 151 | shift |
Gavin Howard | 2425bf2 | 2019-04-08 17:05:45 -0600 | [diff] [blame] | 152 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 153 | _substring_replace_needle="$1" |
Gavin Howard | aea5bdb | 2019-04-09 09:01:15 -0600 | [diff] [blame] | 154 | shift |
| 155 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 156 | _substring_replace_replacement="$1" |
Gavin Howard | aea5bdb | 2019-04-09 09:01:15 -0600 | [diff] [blame] | 157 | shift |
Gavin Howard | 2425bf2 | 2019-04-08 17:05:45 -0600 | [diff] [blame] | 158 | |
Zach van Rijn | 579518c | 2020-01-14 21:56:45 +0000 | [diff] [blame] | 159 | _substring_replace_result=$(printf '%s\n' "$_substring_replace_str" | \ |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 160 | sed -e "s!$_substring_replace_needle!$_substring_replace_replacement!g") |
Gavin Howard | 2425bf2 | 2019-04-08 17:05:45 -0600 | [diff] [blame] | 161 | |
Zach van Rijn | 579518c | 2020-01-14 21:56:45 +0000 | [diff] [blame] | 162 | printf '%s' "$_substring_replace_result" |
Gavin Howard | 2425bf2 | 2019-04-08 17:05:45 -0600 | [diff] [blame] | 163 | } |
Gavin Howard | aea5bdb | 2019-04-09 09:01:15 -0600 | [diff] [blame] | 164 | |
| 165 | gen_nlspath() { |
| 166 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 167 | _gen_nlspath_nlspath="$1" |
Gavin Howard | aea5bdb | 2019-04-09 09:01:15 -0600 | [diff] [blame] | 168 | shift |
| 169 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 170 | _gen_nlspath_locale="$1" |
Gavin Howard | aea5bdb | 2019-04-09 09:01:15 -0600 | [diff] [blame] | 171 | shift |
| 172 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 173 | _gen_nlspath_execname="$1" |
Gavin Howard | aea5bdb | 2019-04-09 09:01:15 -0600 | [diff] [blame] | 174 | shift |
| 175 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 176 | _gen_nlspath_char="@" |
| 177 | _gen_nlspath_modifier="${_gen_nlspath_locale#*$_gen_nlspath_char}" |
| 178 | _gen_nlspath_tmplocale="${_gen_nlspath_locale%%$_gen_nlspath_char*}" |
Gavin Howard | aea5bdb | 2019-04-09 09:01:15 -0600 | [diff] [blame] | 179 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 180 | _gen_nlspath_char="." |
| 181 | _gen_nlspath_charset="${_gen_nlspath_tmplocale#*$_gen_nlspath_char}" |
| 182 | _gen_nlspath_tmplocale="${_gen_nlspath_tmplocale%%$_gen_nlspath_char*}" |
Gavin Howard | aea5bdb | 2019-04-09 09:01:15 -0600 | [diff] [blame] | 183 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 184 | if [ "$_gen_nlspath_charset" = "$_gen_nlspath_tmplocale" ]; then |
| 185 | _gen_nlspath_charset="" |
Gavin Howard | aea5bdb | 2019-04-09 09:01:15 -0600 | [diff] [blame] | 186 | fi |
| 187 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 188 | _gen_nlspath_char="_" |
| 189 | _gen_nlspath_territory="${_gen_nlspath_tmplocale#*$_gen_nlspath_char}" |
| 190 | _gen_nlspath_language="${_gen_nlspath_tmplocale%%$_gen_nlspath_char*}" |
Gavin Howard | aea5bdb | 2019-04-09 09:01:15 -0600 | [diff] [blame] | 191 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 192 | if [ "$_gen_nlspath_territory" = "$_gen_nlspath_tmplocale" ]; then |
| 193 | _gen_nlspath_territory="" |
Gavin Howard | aea5bdb | 2019-04-09 09:01:15 -0600 | [diff] [blame] | 194 | fi |
| 195 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 196 | if [ "$_gen_nlspath_language" = "$_gen_nlspath_tmplocale" ]; then |
| 197 | _gen_nlspath_language="" |
Gavin Howard | aea5bdb | 2019-04-09 09:01:15 -0600 | [diff] [blame] | 198 | fi |
| 199 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 200 | _gen_nlspath_needles="%%:%L:%N:%l:%t:%c" |
Gavin Howard | aea5bdb | 2019-04-09 09:01:15 -0600 | [diff] [blame] | 201 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 202 | _gen_nlspath_needles=$(printf '%s' "$_gen_nlspath_needles" | tr ':' '\n') |
Gavin Howard | aea5bdb | 2019-04-09 09:01:15 -0600 | [diff] [blame] | 203 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 204 | for _gen_nlspath_i in $_gen_nlspath_needles; do |
| 205 | _gen_nlspath_nlspath=$(substring_replace "$_gen_nlspath_nlspath" "$_gen_nlspath_i" "|$_gen_nlspath_i|") |
Gavin Howard | aea5bdb | 2019-04-09 09:01:15 -0600 | [diff] [blame] | 206 | done |
| 207 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 208 | _gen_nlspath_nlspath=$(substring_replace "$_gen_nlspath_nlspath" "%%" "%") |
| 209 | _gen_nlspath_nlspath=$(substring_replace "$_gen_nlspath_nlspath" "%L" "$_gen_nlspath_locale") |
| 210 | _gen_nlspath_nlspath=$(substring_replace "$_gen_nlspath_nlspath" "%N" "$_gen_nlspath_execname") |
| 211 | _gen_nlspath_nlspath=$(substring_replace "$_gen_nlspath_nlspath" "%l" "$_gen_nlspath_language") |
| 212 | _gen_nlspath_nlspath=$(substring_replace "$_gen_nlspath_nlspath" "%t" "$_gen_nlspath_territory") |
| 213 | _gen_nlspath_nlspath=$(substring_replace "$_gen_nlspath_nlspath" "%c" "$_gen_nlspath_charset") |
Gavin Howard | aea5bdb | 2019-04-09 09:01:15 -0600 | [diff] [blame] | 214 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 215 | _gen_nlspath_nlspath=$(printf '%s' "$_gen_nlspath_nlspath" | tr -d '|') |
Gavin Howard | aea5bdb | 2019-04-09 09:01:15 -0600 | [diff] [blame] | 216 | |
Gavin Howard | 62421e9 | 2019-04-17 12:56:30 -0600 | [diff] [blame] | 217 | printf '%s' "$_gen_nlspath_nlspath" |
Gavin Howard | aea5bdb | 2019-04-09 09:01:15 -0600 | [diff] [blame] | 218 | } |