Jonathan Nieder | c74c720 | 2013-11-25 13:03:06 -0800 | [diff] [blame] | 1 | # Test framework for git. See t/README for usage. |
Junio C Hamano | e1970ce | 2005-05-13 22:50:32 -0700 | [diff] [blame] | 2 | # |
| 3 | # Copyright (c) 2005 Junio C Hamano |
| 4 | # |
Michal Sojka | 64b9032 | 2010-04-16 15:53:59 +0200 | [diff] [blame] | 5 | # This program is free software: you can redistribute it and/or modify |
| 6 | # it under the terms of the GNU General Public License as published by |
| 7 | # the Free Software Foundation, either version 2 of the License, or |
| 8 | # (at your option) any later version. |
| 9 | # |
| 10 | # This program is distributed in the hope that it will be useful, |
| 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | # GNU General Public License for more details. |
| 14 | # |
| 15 | # You should have received a copy of the GNU General Public License |
| 16 | # along with this program. If not, see http://www.gnu.org/licenses/ . |
Junio C Hamano | e1970ce | 2005-05-13 22:50:32 -0700 | [diff] [blame] | 17 | |
Junio C Hamano | 3c8f12c | 2012-06-24 22:01:35 -0700 | [diff] [blame] | 18 | # Test the binaries we have just built. The tests are kept in |
| 19 | # t/ subdirectory and are run in 'trash directory' subdirectory. |
| 20 | if test -z "$TEST_DIRECTORY" |
| 21 | then |
Felipe Contreras | 85176d7 | 2013-11-17 23:12:43 -0500 | [diff] [blame] | 22 | # ensure that TEST_DIRECTORY is an absolute path so that it |
| 23 | # is valid even if the current working directory is changed |
Ævar Arnfjörð Bjarmason | 9dbf20e | 2022-02-27 11:25:11 +0100 | [diff] [blame] | 24 | TEST_DIRECTORY=$(pwd) |
| 25 | else |
| 26 | # The TEST_DIRECTORY will always be the path to the "t" |
| 27 | # directory in the git.git checkout. This is overridden by |
| 28 | # e.g. t/lib-subtest.sh, but only because its $(pwd) is |
| 29 | # different. Those tests still set "$TEST_DIRECTORY" to the |
| 30 | # same path. |
| 31 | # |
| 32 | # See use of "$GIT_BUILD_DIR" and "$TEST_DIRECTORY" below for |
| 33 | # hard assumptions about "$GIT_BUILD_DIR/t" existing and being |
| 34 | # the "$TEST_DIRECTORY", and e.g. "$TEST_DIRECTORY/helper" |
| 35 | # needing to exist. |
Felipe Contreras | 85176d7 | 2013-11-17 23:12:43 -0500 | [diff] [blame] | 36 | TEST_DIRECTORY=$(cd "$TEST_DIRECTORY" && pwd) || exit 1 |
Junio C Hamano | 3c8f12c | 2012-06-24 22:01:35 -0700 | [diff] [blame] | 37 | fi |
| 38 | if test -z "$TEST_OUTPUT_DIRECTORY" |
| 39 | then |
| 40 | # Similarly, override this to store the test-results subdir |
| 41 | # elsewhere |
| 42 | TEST_OUTPUT_DIRECTORY=$TEST_DIRECTORY |
| 43 | fi |
Ævar Arnfjörð Bjarmason | b9638d7 | 2022-02-27 11:25:12 +0100 | [diff] [blame] | 44 | GIT_BUILD_DIR="${TEST_DIRECTORY%/t}" |
| 45 | if test "$TEST_DIRECTORY" = "$GIT_BUILD_DIR" |
Ævar Arnfjörð Bjarmason | 9dbf20e | 2022-02-27 11:25:11 +0100 | [diff] [blame] | 46 | then |
| 47 | echo "PANIC: Running in a $TEST_DIRECTORY that doesn't end in '/t'?" >&2 |
| 48 | exit 1 |
| 49 | fi |
Junio C Hamano | 3c8f12c | 2012-06-24 22:01:35 -0700 | [diff] [blame] | 50 | |
Ævar Arnfjörð Bjarmason | 66c1a56 | 2022-02-27 11:25:10 +0100 | [diff] [blame] | 51 | # Prepend a string to a VAR using an arbitrary ":" delimiter, not |
| 52 | # adding the delimiter if VAR or VALUE is empty. I.e. a generalized: |
| 53 | # |
| 54 | # VAR=$1${VAR:+${1:+$2}$VAR} |
| 55 | # |
| 56 | # Usage (using ":" as the $2 delimiter): |
| 57 | # |
| 58 | # prepend_var VAR : VALUE |
| 59 | prepend_var () { |
Ævar Arnfjörð Bjarmason | 361fa32 | 2022-06-30 12:18:35 +0200 | [diff] [blame] | 60 | eval "$1=\"$3\${$1:+${3:+$2}\$$1}\"" |
Ævar Arnfjörð Bjarmason | 66c1a56 | 2022-02-27 11:25:10 +0100 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | # If [AL]SAN is in effect we want to abort so that we notice |
| 64 | # problems. The GIT_SAN_OPTIONS variable can be used to set common |
| 65 | # defaults shared between [AL]SAN_OPTIONS. |
| 66 | prepend_var GIT_SAN_OPTIONS : abort_on_error=1 |
Ævar Arnfjörð Bjarmason | 361fa32 | 2022-06-30 12:18:35 +0200 | [diff] [blame] | 67 | prepend_var GIT_SAN_OPTIONS : strip_path_prefix="$GIT_BUILD_DIR/" |
Ævar Arnfjörð Bjarmason | 66c1a56 | 2022-02-27 11:25:10 +0100 | [diff] [blame] | 68 | |
Jeff King | d0cc579 | 2017-07-10 09:24:35 -0400 | [diff] [blame] | 69 | # If we were built with ASAN, it may complain about leaks |
| 70 | # of program-lifetime variables. Disable it by default to lower |
| 71 | # the noise level. This needs to happen at the start of the script, |
| 72 | # before we even do our "did we build git yet" check (since we don't |
| 73 | # want that one to complain to stderr). |
Ævar Arnfjörð Bjarmason | 66c1a56 | 2022-02-27 11:25:10 +0100 | [diff] [blame] | 74 | prepend_var ASAN_OPTIONS : $GIT_SAN_OPTIONS |
| 75 | prepend_var ASAN_OPTIONS : detect_leaks=0 |
Jeff King | d0cc579 | 2017-07-10 09:24:35 -0400 | [diff] [blame] | 76 | export ASAN_OPTIONS |
| 77 | |
Ævar Arnfjörð Bjarmason | 66c1a56 | 2022-02-27 11:25:10 +0100 | [diff] [blame] | 78 | prepend_var LSAN_OPTIONS : $GIT_SAN_OPTIONS |
Ævar Arnfjörð Bjarmason | 71f2679 | 2022-02-27 11:25:13 +0100 | [diff] [blame] | 79 | prepend_var LSAN_OPTIONS : fast_unwind_on_malloc=0 |
Jeff King | 85b81b3 | 2017-09-05 09:04:04 -0400 | [diff] [blame] | 80 | export LSAN_OPTIONS |
| 81 | |
Johannes Schindelin | 8abfdf4 | 2018-11-14 08:32:11 -0800 | [diff] [blame] | 82 | if test ! -f "$GIT_BUILD_DIR"/GIT-BUILD-OPTIONS |
Ramkumar Ramachandra | 2006f0a | 2012-09-17 22:36:19 +0530 | [diff] [blame] | 83 | then |
Johannes Schindelin | 8abfdf4 | 2018-11-14 08:32:11 -0800 | [diff] [blame] | 84 | echo >&2 'error: GIT-BUILD-OPTIONS missing (has Git been built?).' |
Ramkumar Ramachandra | 2006f0a | 2012-09-17 22:36:19 +0530 | [diff] [blame] | 85 | exit 1 |
| 86 | fi |
Junio C Hamano | 3c8f12c | 2012-06-24 22:01:35 -0700 | [diff] [blame] | 87 | . "$GIT_BUILD_DIR"/GIT-BUILD-OPTIONS |
| 88 | export PERL_PATH SHELL_PATH |
| 89 | |
Patrick Steinhardt | ade1552 | 2021-07-20 08:32:26 +0200 | [diff] [blame] | 90 | # In t0000, we need to override test directories of nested testcases. In case |
| 91 | # the developer has TEST_OUTPUT_DIRECTORY part of his build options, then we'd |
| 92 | # reset this value to instead contain what the developer has specified. We thus |
| 93 | # have this knob to allow overriding the directory. |
| 94 | if test -n "${TEST_OUTPUT_DIRECTORY_OVERRIDE}" |
| 95 | then |
| 96 | TEST_OUTPUT_DIRECTORY="${TEST_OUTPUT_DIRECTORY_OVERRIDE}" |
| 97 | fi |
| 98 | |
Johannes Schindelin | b02e7d5 | 2019-04-12 02:37:24 -0700 | [diff] [blame] | 99 | # Disallow the use of abbreviated options in the test suite by default |
| 100 | if test -z "${GIT_TEST_DISALLOW_ABBREVIATED_OPTIONS}" |
| 101 | then |
| 102 | GIT_TEST_DISALLOW_ABBREVIATED_OPTIONS=true |
| 103 | export GIT_TEST_DISALLOW_ABBREVIATED_OPTIONS |
| 104 | fi |
| 105 | |
Ævar Arnfjörð Bjarmason | 97c8aac | 2021-05-10 16:19:09 +0200 | [diff] [blame] | 106 | # Explicitly set the default branch name for testing, to avoid the |
| 107 | # transitory "git init" warning under --verbose. |
| 108 | : ${GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME:=master} |
| 109 | export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME |
| 110 | |
Junio C Hamano | c2116a1 | 2008-03-06 19:04:26 -0800 | [diff] [blame] | 111 | ################################################################ |
| 112 | # It appears that people try to run tests without building... |
Johannes Schindelin | 8abfdf4 | 2018-11-14 08:32:11 -0800 | [diff] [blame] | 113 | "${GIT_TEST_INSTALLED:-$GIT_BUILD_DIR}/git$X" >/dev/null |
Junio C Hamano | e1970ce | 2005-05-13 22:50:32 -0700 | [diff] [blame] | 114 | if test $? != 1 |
| 115 | then |
Johannes Schindelin | ed306e4 | 2018-11-14 08:32:10 -0800 | [diff] [blame] | 116 | if test -n "$GIT_TEST_INSTALLED" |
| 117 | then |
| 118 | echo >&2 "error: there is no working Git at '$GIT_TEST_INSTALLED'" |
| 119 | else |
| 120 | echo >&2 'error: you do not seem to have built git yet.' |
| 121 | fi |
Pavel Roskin | d9bdd39 | 2005-08-10 22:10:01 -0400 | [diff] [blame] | 122 | exit 1 |
Junio C Hamano | e1970ce | 2005-05-13 22:50:32 -0700 | [diff] [blame] | 123 | fi |
Junio C Hamano | c2116a1 | 2008-03-06 19:04:26 -0800 | [diff] [blame] | 124 | |
SZEDER Gábor | 8cf5800 | 2019-01-05 02:08:55 +0100 | [diff] [blame] | 125 | store_arg_to= |
Matheus Tavares | 78dc088 | 2020-03-22 12:58:57 -0300 | [diff] [blame] | 126 | opt_required_arg= |
| 127 | # $1: option string |
| 128 | # $2: name of the var where the arg will be stored |
| 129 | mark_option_requires_arg () { |
| 130 | if test -n "$opt_required_arg" |
SZEDER Gábor | 8cf5800 | 2019-01-05 02:08:55 +0100 | [diff] [blame] | 131 | then |
Matheus Tavares | 78dc088 | 2020-03-22 12:58:57 -0300 | [diff] [blame] | 132 | echo "error: options that require args cannot be bundled" \ |
| 133 | "together: '$opt_required_arg' and '$1'" >&2 |
| 134 | exit 1 |
SZEDER Gábor | 8cf5800 | 2019-01-05 02:08:55 +0100 | [diff] [blame] | 135 | fi |
Matheus Tavares | 78dc088 | 2020-03-22 12:58:57 -0300 | [diff] [blame] | 136 | opt_required_arg=$1 |
| 137 | store_arg_to=$2 |
| 138 | } |
| 139 | |
Johannes Schindelin | 78d5e4c | 2022-05-21 22:18:46 +0000 | [diff] [blame] | 140 | # These functions can be overridden e.g. to output JUnit XML |
| 141 | start_test_output () { :; } |
| 142 | start_test_case_output () { :; } |
| 143 | finalize_test_case_output () { :; } |
| 144 | finalize_test_output () { :; } |
| 145 | |
Matheus Tavares | 78dc088 | 2020-03-22 12:58:57 -0300 | [diff] [blame] | 146 | parse_option () { |
| 147 | local opt="$1" |
SZEDER Gábor | 8cf5800 | 2019-01-05 02:08:55 +0100 | [diff] [blame] | 148 | |
| 149 | case "$opt" in |
| 150 | -d|--d|--de|--deb|--debu|--debug) |
| 151 | debug=t ;; |
| 152 | -i|--i|--im|--imm|--imme|--immed|--immedi|--immedia|--immediat|--immediate) |
| 153 | immediate=t ;; |
| 154 | -l|--l|--lo|--lon|--long|--long-|--long-t|--long-te|--long-tes|--long-test|--long-tests) |
| 155 | GIT_TEST_LONG=t; export GIT_TEST_LONG ;; |
| 156 | -r) |
Matheus Tavares | 78dc088 | 2020-03-22 12:58:57 -0300 | [diff] [blame] | 157 | mark_option_requires_arg "$opt" run_list |
SZEDER Gábor | 8cf5800 | 2019-01-05 02:08:55 +0100 | [diff] [blame] | 158 | ;; |
| 159 | --run=*) |
| 160 | run_list=${opt#--*=} ;; |
| 161 | -h|--h|--he|--hel|--help) |
| 162 | help=t ;; |
| 163 | -v|--v|--ve|--ver|--verb|--verbo|--verbos|--verbose) |
| 164 | verbose=t ;; |
| 165 | --verbose-only=*) |
| 166 | verbose_only=${opt#--*=} |
| 167 | ;; |
| 168 | -q|--q|--qu|--qui|--quie|--quiet) |
| 169 | # Ignore --quiet under a TAP::Harness. Saying how many tests |
| 170 | # passed without the ok/not ok details is always an error. |
| 171 | test -z "$HARNESS_ACTIVE" && quiet=t ;; |
| 172 | --with-dashes) |
| 173 | with_dashes=t ;; |
Johannes Schindelin | dd167a3 | 2019-01-29 06:19:37 -0800 | [diff] [blame] | 174 | --no-bin-wrappers) |
| 175 | no_bin_wrappers=t ;; |
SZEDER Gábor | 8cf5800 | 2019-01-05 02:08:55 +0100 | [diff] [blame] | 176 | --no-color) |
| 177 | color= ;; |
| 178 | --va|--val|--valg|--valgr|--valgri|--valgrin|--valgrind) |
| 179 | valgrind=memcheck |
| 180 | tee=t |
| 181 | ;; |
| 182 | --valgrind=*) |
| 183 | valgrind=${opt#--*=} |
| 184 | tee=t |
| 185 | ;; |
| 186 | --valgrind-only=*) |
| 187 | valgrind_only=${opt#--*=} |
| 188 | tee=t |
| 189 | ;; |
| 190 | --tee) |
| 191 | tee=t ;; |
| 192 | --root=*) |
| 193 | root=${opt#--*=} ;; |
| 194 | --chain-lint) |
| 195 | GIT_TEST_CHAIN_LINT=1 ;; |
| 196 | --no-chain-lint) |
| 197 | GIT_TEST_CHAIN_LINT=0 ;; |
| 198 | -x) |
| 199 | trace=t ;; |
| 200 | -V|--verbose-log) |
| 201 | verbose_log=t |
| 202 | tee=t |
| 203 | ;; |
Johannes Schindelin | 2223190 | 2019-01-29 06:19:27 -0800 | [diff] [blame] | 204 | --write-junit-xml) |
Johannes Schindelin | 78d5e4c | 2022-05-21 22:18:46 +0000 | [diff] [blame] | 205 | . "$TEST_DIRECTORY/test-lib-junit.sh" |
Johannes Schindelin | 2223190 | 2019-01-29 06:19:27 -0800 | [diff] [blame] | 206 | ;; |
Johannes Schindelin | 0f5ae59 | 2022-05-21 22:18:51 +0000 | [diff] [blame] | 207 | --github-workflow-markup) |
| 208 | . "$TEST_DIRECTORY/test-lib-github-workflow-markup.sh" |
Johannes Schindelin | 2223190 | 2019-01-29 06:19:27 -0800 | [diff] [blame] | 209 | ;; |
SZEDER Gábor | fb7d1e3 | 2019-01-05 02:08:59 +0100 | [diff] [blame] | 210 | --stress) |
| 211 | stress=t ;; |
| 212 | --stress=*) |
Johannes Schindelin | f545737 | 2019-03-03 06:44:55 -0800 | [diff] [blame] | 213 | echo "error: --stress does not accept an argument: '$opt'" >&2 |
| 214 | echo "did you mean --stress-jobs=${opt#*=} or --stress-limit=${opt#*=}?" >&2 |
| 215 | exit 1 |
| 216 | ;; |
| 217 | --stress-jobs=*) |
| 218 | stress=t; |
SZEDER Gábor | 134768c | 2021-01-26 23:05:33 +0100 | [diff] [blame] | 219 | stress_jobs=${opt#--*=} |
| 220 | case "$stress_jobs" in |
SZEDER Gábor | 7d661e5 | 2019-02-11 20:58:03 +0100 | [diff] [blame] | 221 | *[!0-9]*|0*|"") |
Johannes Schindelin | f545737 | 2019-03-03 06:44:55 -0800 | [diff] [blame] | 222 | echo "error: --stress-jobs=<N> requires the number of jobs to run" >&2 |
SZEDER Gábor | fb7d1e3 | 2019-01-05 02:08:59 +0100 | [diff] [blame] | 223 | exit 1 |
| 224 | ;; |
| 225 | *) # Good. |
| 226 | ;; |
| 227 | esac |
| 228 | ;; |
SZEDER Gábor | 76e27fb | 2019-02-08 12:50:45 +0100 | [diff] [blame] | 229 | --stress-limit=*) |
Johannes Schindelin | de69e6f | 2019-03-03 06:44:54 -0800 | [diff] [blame] | 230 | stress=t; |
SZEDER Gábor | 76e27fb | 2019-02-08 12:50:45 +0100 | [diff] [blame] | 231 | stress_limit=${opt#--*=} |
| 232 | case "$stress_limit" in |
SZEDER Gábor | 7d661e5 | 2019-02-11 20:58:03 +0100 | [diff] [blame] | 233 | *[!0-9]*|0*|"") |
SZEDER Gábor | 76e27fb | 2019-02-08 12:50:45 +0100 | [diff] [blame] | 234 | echo "error: --stress-limit=<N> requires the number of repetitions" >&2 |
| 235 | exit 1 |
| 236 | ;; |
| 237 | *) # Good. |
| 238 | ;; |
| 239 | esac |
| 240 | ;; |
SZEDER Gábor | 8cf5800 | 2019-01-05 02:08:55 +0100 | [diff] [blame] | 241 | *) |
| 242 | echo "error: unknown test option '$opt'" >&2; exit 1 ;; |
| 243 | esac |
Matheus Tavares | 78dc088 | 2020-03-22 12:58:57 -0300 | [diff] [blame] | 244 | } |
SZEDER Gábor | 8cf5800 | 2019-01-05 02:08:55 +0100 | [diff] [blame] | 245 | |
Matheus Tavares | 78dc088 | 2020-03-22 12:58:57 -0300 | [diff] [blame] | 246 | # Parse options while taking care to leave $@ intact, so we will still |
| 247 | # have all the original command line options when executing the test |
| 248 | # script again for '--tee' and '--verbose-log' later. |
| 249 | for opt |
| 250 | do |
| 251 | if test -n "$store_arg_to" |
| 252 | then |
| 253 | eval $store_arg_to=\$opt |
| 254 | store_arg_to= |
| 255 | opt_required_arg= |
| 256 | continue |
| 257 | fi |
| 258 | |
| 259 | case "$opt" in |
| 260 | --*|-?) |
| 261 | parse_option "$opt" ;; |
| 262 | -?*) |
| 263 | # bundled short options must be fed separately to parse_option |
| 264 | opt=${opt#-} |
| 265 | while test -n "$opt" |
| 266 | do |
| 267 | extra=${opt#?} |
| 268 | this=${opt%$extra} |
| 269 | opt=$extra |
| 270 | parse_option "-$this" |
| 271 | done |
| 272 | ;; |
| 273 | *) |
| 274 | echo "error: unknown test option '$opt'" >&2; exit 1 ;; |
| 275 | esac |
SZEDER Gábor | 8cf5800 | 2019-01-05 02:08:55 +0100 | [diff] [blame] | 276 | done |
| 277 | if test -n "$store_arg_to" |
| 278 | then |
Matheus Tavares | 78dc088 | 2020-03-22 12:58:57 -0300 | [diff] [blame] | 279 | echo "error: $opt_required_arg requires an argument" >&2 |
SZEDER Gábor | 8cf5800 | 2019-01-05 02:08:55 +0100 | [diff] [blame] | 280 | exit 1 |
| 281 | fi |
| 282 | |
| 283 | if test -n "$valgrind_only" |
| 284 | then |
| 285 | test -z "$valgrind" && valgrind=memcheck |
| 286 | test -z "$verbose" && verbose_only="$valgrind_only" |
| 287 | elif test -n "$valgrind" |
| 288 | then |
| 289 | test -z "$verbose_log" && verbose=t |
| 290 | fi |
| 291 | |
SZEDER Gábor | fb7d1e3 | 2019-01-05 02:08:59 +0100 | [diff] [blame] | 292 | if test -n "$stress" |
| 293 | then |
| 294 | verbose=t |
| 295 | trace=t |
| 296 | immediate=t |
| 297 | fi |
| 298 | |
| 299 | TEST_STRESS_JOB_SFX="${GIT_TEST_STRESS_JOB_NR:+.stress-$GIT_TEST_STRESS_JOB_NR}" |
SZEDER Gábor | 62c379b | 2019-01-05 02:08:56 +0100 | [diff] [blame] | 300 | TEST_NAME="$(basename "$0" .sh)" |
SZEDER Gábor | ffe1afe | 2019-08-05 23:04:47 +0200 | [diff] [blame] | 301 | TEST_NUMBER="${TEST_NAME%%-*}" |
| 302 | TEST_NUMBER="${TEST_NUMBER#t}" |
SZEDER Gábor | 62c379b | 2019-01-05 02:08:56 +0100 | [diff] [blame] | 303 | TEST_RESULTS_DIR="$TEST_OUTPUT_DIRECTORY/test-results" |
SZEDER Gábor | fb7d1e3 | 2019-01-05 02:08:59 +0100 | [diff] [blame] | 304 | TEST_RESULTS_BASE="$TEST_RESULTS_DIR/$TEST_NAME$TEST_STRESS_JOB_SFX" |
| 305 | TRASH_DIRECTORY="trash directory.$TEST_NAME$TEST_STRESS_JOB_SFX" |
SZEDER Gábor | 61f292d | 2019-01-05 02:08:57 +0100 | [diff] [blame] | 306 | test -n "$root" && TRASH_DIRECTORY="$root/$TRASH_DIRECTORY" |
| 307 | case "$TRASH_DIRECTORY" in |
| 308 | /*) ;; # absolute path is good |
| 309 | *) TRASH_DIRECTORY="$TEST_OUTPUT_DIRECTORY/$TRASH_DIRECTORY" ;; |
| 310 | esac |
SZEDER Gábor | 62c379b | 2019-01-05 02:08:56 +0100 | [diff] [blame] | 311 | |
SZEDER Gábor | fb7d1e3 | 2019-01-05 02:08:59 +0100 | [diff] [blame] | 312 | # If --stress was passed, run this test repeatedly in several parallel loops. |
| 313 | if test "$GIT_TEST_STRESS_STARTED" = "done" |
| 314 | then |
| 315 | : # Don't stress test again. |
| 316 | elif test -n "$stress" |
| 317 | then |
SZEDER Gábor | 134768c | 2021-01-26 23:05:33 +0100 | [diff] [blame] | 318 | if test -n "$stress_jobs" |
SZEDER Gábor | fb7d1e3 | 2019-01-05 02:08:59 +0100 | [diff] [blame] | 319 | then |
SZEDER Gábor | 134768c | 2021-01-26 23:05:33 +0100 | [diff] [blame] | 320 | job_count=$stress_jobs |
SZEDER Gábor | fb7d1e3 | 2019-01-05 02:08:59 +0100 | [diff] [blame] | 321 | elif test -n "$GIT_TEST_STRESS_LOAD" |
| 322 | then |
| 323 | job_count="$GIT_TEST_STRESS_LOAD" |
| 324 | elif job_count=$(getconf _NPROCESSORS_ONLN 2>/dev/null) && |
| 325 | test -n "$job_count" |
| 326 | then |
| 327 | job_count=$((2 * $job_count)) |
| 328 | else |
| 329 | job_count=8 |
| 330 | fi |
| 331 | |
| 332 | mkdir -p "$TEST_RESULTS_DIR" |
| 333 | stressfail="$TEST_RESULTS_BASE.stress-failed" |
| 334 | rm -f "$stressfail" |
| 335 | |
| 336 | stress_exit=0 |
| 337 | trap ' |
| 338 | kill $job_pids 2>/dev/null |
| 339 | wait |
| 340 | stress_exit=1 |
| 341 | ' TERM INT HUP |
| 342 | |
| 343 | job_pids= |
| 344 | job_nr=0 |
| 345 | while test $job_nr -lt "$job_count" |
| 346 | do |
| 347 | ( |
| 348 | GIT_TEST_STRESS_STARTED=done |
| 349 | GIT_TEST_STRESS_JOB_NR=$job_nr |
| 350 | export GIT_TEST_STRESS_STARTED GIT_TEST_STRESS_JOB_NR |
| 351 | |
| 352 | trap ' |
| 353 | kill $test_pid 2>/dev/null |
| 354 | wait |
| 355 | exit 1 |
| 356 | ' TERM INT |
| 357 | |
SZEDER Gábor | 76e27fb | 2019-02-08 12:50:45 +0100 | [diff] [blame] | 358 | cnt=1 |
| 359 | while ! test -e "$stressfail" && |
| 360 | { test -z "$stress_limit" || |
| 361 | test $cnt -le $stress_limit ; } |
SZEDER Gábor | fb7d1e3 | 2019-01-05 02:08:59 +0100 | [diff] [blame] | 362 | do |
| 363 | $TEST_SHELL_PATH "$0" "$@" >"$TEST_RESULTS_BASE.stress-$job_nr.out" 2>&1 & |
| 364 | test_pid=$! |
| 365 | |
| 366 | if wait $test_pid |
| 367 | then |
| 368 | printf "OK %2d.%d\n" $GIT_TEST_STRESS_JOB_NR $cnt |
| 369 | else |
| 370 | echo $GIT_TEST_STRESS_JOB_NR >>"$stressfail" |
| 371 | printf "FAIL %2d.%d\n" $GIT_TEST_STRESS_JOB_NR $cnt |
| 372 | fi |
| 373 | cnt=$(($cnt + 1)) |
| 374 | done |
| 375 | ) & |
| 376 | job_pids="$job_pids $!" |
| 377 | job_nr=$(($job_nr + 1)) |
| 378 | done |
| 379 | |
| 380 | wait |
| 381 | |
| 382 | if test -f "$stressfail" |
| 383 | then |
SZEDER Gábor | 76e27fb | 2019-02-08 12:50:45 +0100 | [diff] [blame] | 384 | stress_exit=1 |
SZEDER Gábor | fb7d1e3 | 2019-01-05 02:08:59 +0100 | [diff] [blame] | 385 | echo "Log(s) of failed test run(s):" |
| 386 | for failed_job_nr in $(sort -n "$stressfail") |
| 387 | do |
| 388 | echo "Contents of '$TEST_RESULTS_BASE.stress-$failed_job_nr.out':" |
| 389 | cat "$TEST_RESULTS_BASE.stress-$failed_job_nr.out" |
| 390 | done |
| 391 | rm -rf "$TRASH_DIRECTORY.stress-failed" |
| 392 | # Move the last one. |
| 393 | mv "$TRASH_DIRECTORY.stress-$failed_job_nr" "$TRASH_DIRECTORY.stress-failed" |
| 394 | fi |
| 395 | |
| 396 | exit $stress_exit |
| 397 | fi |
| 398 | |
Ramkumar Ramachandra | 4cde519 | 2012-09-22 10:25:10 +0530 | [diff] [blame] | 399 | # if --tee was passed, write the output not only to the terminal, but |
| 400 | # additionally to the file test-results/$BASENAME.out, too. |
SZEDER Gábor | 8cf5800 | 2019-01-05 02:08:55 +0100 | [diff] [blame] | 401 | if test "$GIT_TEST_TEE_STARTED" = "done" |
| 402 | then |
| 403 | : # do not redirect again |
| 404 | elif test -n "$tee" |
| 405 | then |
SZEDER Gábor | 62c379b | 2019-01-05 02:08:56 +0100 | [diff] [blame] | 406 | mkdir -p "$TEST_RESULTS_DIR" |
Jeff King | 452320f | 2016-10-21 06:48:00 -0400 | [diff] [blame] | 407 | |
| 408 | # Make this filename available to the sub-process in case it is using |
| 409 | # --verbose-log. |
SZEDER Gábor | 62c379b | 2019-01-05 02:08:56 +0100 | [diff] [blame] | 410 | GIT_TEST_TEE_OUTPUT_FILE=$TEST_RESULTS_BASE.out |
Jeff King | 452320f | 2016-10-21 06:48:00 -0400 | [diff] [blame] | 411 | export GIT_TEST_TEE_OUTPUT_FILE |
| 412 | |
| 413 | # Truncate before calling "tee -a" to get rid of the results |
| 414 | # from any previous runs. |
| 415 | >"$GIT_TEST_TEE_OUTPUT_FILE" |
| 416 | |
Jeff King | 3f824e9 | 2017-12-08 05:47:22 -0500 | [diff] [blame] | 417 | (GIT_TEST_TEE_STARTED=done ${TEST_SHELL_PATH} "$0" "$@" 2>&1; |
SZEDER Gábor | 62c379b | 2019-01-05 02:08:56 +0100 | [diff] [blame] | 418 | echo $? >"$TEST_RESULTS_BASE.exit") | tee -a "$GIT_TEST_TEE_OUTPUT_FILE" |
| 419 | test "$(cat "$TEST_RESULTS_BASE.exit")" = 0 |
Ramkumar Ramachandra | 4cde519 | 2012-09-22 10:25:10 +0530 | [diff] [blame] | 420 | exit |
SZEDER Gábor | 8cf5800 | 2019-01-05 02:08:55 +0100 | [diff] [blame] | 421 | fi |
| 422 | |
| 423 | if test -n "$trace" && test -n "$test_untraceable" |
| 424 | then |
| 425 | # '-x' tracing requested, but this test script can't be reliably |
| 426 | # traced, unless it is run with a Bash version supporting |
| 427 | # BASH_XTRACEFD (introduced in Bash v4.1). |
| 428 | # |
| 429 | # Perform this version check _after_ the test script was |
| 430 | # potentially re-executed with $TEST_SHELL_PATH for '--tee' or |
| 431 | # '--verbose-log', so the right shell is checked and the |
| 432 | # warning is issued only once. |
| 433 | if test -n "$BASH_VERSION" && eval ' |
| 434 | test ${BASH_VERSINFO[0]} -gt 4 || { |
| 435 | test ${BASH_VERSINFO[0]} -eq 4 && |
| 436 | test ${BASH_VERSINFO[1]} -ge 1 |
| 437 | } |
| 438 | ' |
| 439 | then |
| 440 | : Executed by a Bash version supporting BASH_XTRACEFD. Good. |
| 441 | else |
| 442 | echo >&2 "warning: ignoring -x; '$0' is untraceable without BASH_XTRACEFD" |
| 443 | trace= |
| 444 | fi |
| 445 | fi |
| 446 | if test -n "$trace" && test -z "$verbose_log" |
| 447 | then |
| 448 | verbose=t |
| 449 | fi |
Ramkumar Ramachandra | 4cde519 | 2012-09-22 10:25:10 +0530 | [diff] [blame] | 450 | |
Felipe Contreras | 390b44e | 2021-08-05 14:48:25 -0500 | [diff] [blame] | 451 | # Since bash 5.0, checkwinsize is enabled by default which does |
| 452 | # update the COLUMNS variable every time a non-builtin command |
| 453 | # completes, even for non-interactive shells. |
| 454 | # Disable that since we are aiming for repeatability. |
| 455 | test -n "$BASH_VERSION" && shopt -u checkwinsize 2>/dev/null |
| 456 | |
Junio C Hamano | e1970ce | 2005-05-13 22:50:32 -0700 | [diff] [blame] | 457 | # For repeatability, reset the environment to known value. |
Richard Hansen | d5c1b7c | 2015-06-17 17:11:21 -0400 | [diff] [blame] | 458 | # TERM is sanitized below, after saving color control sequences. |
Junio C Hamano | e1970ce | 2005-05-13 22:50:32 -0700 | [diff] [blame] | 459 | LANG=C |
| 460 | LC_ALL=C |
| 461 | PAGER=cat |
| 462 | TZ=UTC |
Ævar Arnfjörð Bjarmason | c49a177 | 2021-06-29 13:29:36 +0200 | [diff] [blame] | 463 | COLUMNS=80 |
| 464 | export LANG LC_ALL PAGER TZ COLUMNS |
Eric Wong | 8ff99e7 | 2006-07-11 12:01:54 -0700 | [diff] [blame] | 465 | EDITOR=: |
Ævar Arnfjörð Bjarmason | 6cdccfc | 2018-11-08 21:15:29 +0000 | [diff] [blame] | 466 | |
Stefano Lattarini | 661bfd1 | 2012-03-02 19:48:36 +0100 | [diff] [blame] | 467 | # A call to "unset" with no arguments causes at least Solaris 10 |
| 468 | # /usr/xpg4/bin/sh and /bin/ksh to bail out. So keep the unsets |
| 469 | # deriving from the command substitution clustered with the other |
| 470 | # ones. |
Ævar Arnfjörð Bjarmason | c49a177 | 2021-06-29 13:29:36 +0200 | [diff] [blame] | 471 | unset VISUAL EMAIL LANGUAGE $("$PERL_PATH" -e ' |
Jonathan Nieder | 95a1d12 | 2011-03-15 05:10:45 -0500 | [diff] [blame] | 472 | my @env = keys %ENV; |
Jens Lehmann | 730477f | 2011-03-28 21:16:09 +0200 | [diff] [blame] | 473 | my $ok = join("|", qw( |
| 474 | TRACE |
| 475 | DEBUG |
Jens Lehmann | 730477f | 2011-03-28 21:16:09 +0200 | [diff] [blame] | 476 | TEST |
| 477 | .*_TEST |
| 478 | PROVE |
| 479 | VALGRIND |
René Scharfe | ac00128 | 2013-01-06 18:47:57 +0100 | [diff] [blame] | 480 | UNZIP |
Nguyễn Thái Ngọc Duy | edb5408 | 2013-01-15 20:50:56 +0700 | [diff] [blame] | 481 | PERF_ |
Jeff King | e2a0ccc | 2014-05-22 05:28:50 -0400 | [diff] [blame] | 482 | CURL_VERBOSE |
Elia Pinto | 4527aa1 | 2016-09-05 10:24:42 +0000 | [diff] [blame] | 483 | TRACE_CURL |
Jens Lehmann | 730477f | 2011-03-28 21:16:09 +0200 | [diff] [blame] | 484 | )); |
| 485 | my @vars = grep(/^GIT_/ && !/^GIT_($ok)/o, @env); |
Jonathan Nieder | 95a1d12 | 2011-03-15 05:10:45 -0500 | [diff] [blame] | 486 | print join("\n", @vars); |
| 487 | ') |
Genki Sky | 7976e90 | 2018-02-15 21:46:04 -0500 | [diff] [blame] | 488 | unset XDG_CACHE_HOME |
Jeff King | 5adf84e | 2012-07-24 07:53:05 -0400 | [diff] [blame] | 489 | unset XDG_CONFIG_HOME |
Benoit Person | 8bade1e | 2013-07-04 22:38:55 +0200 | [diff] [blame] | 490 | unset GITPERLLIB |
Josh Steadmon | 944d808 | 2022-01-13 19:33:36 -0800 | [diff] [blame] | 491 | unset GIT_TRACE2_PARENT_NAME |
| 492 | unset GIT_TRACE2_PARENT_SID |
Prarit Bhargava | d8b8217 | 2019-10-29 08:09:14 -0400 | [diff] [blame] | 493 | TEST_AUTHOR_LOCALNAME=author |
| 494 | TEST_AUTHOR_DOMAIN=example.com |
| 495 | GIT_AUTHOR_EMAIL=${TEST_AUTHOR_LOCALNAME}@${TEST_AUTHOR_DOMAIN} |
Junio C Hamano | 29e55cd | 2006-02-10 19:11:23 -0800 | [diff] [blame] | 496 | GIT_AUTHOR_NAME='A U Thor' |
Jeff King | f2e3937 | 2020-07-09 16:42:04 -0400 | [diff] [blame] | 497 | GIT_AUTHOR_DATE='1112354055 +0200' |
Prarit Bhargava | d8b8217 | 2019-10-29 08:09:14 -0400 | [diff] [blame] | 498 | TEST_COMMITTER_LOCALNAME=committer |
| 499 | TEST_COMMITTER_DOMAIN=example.com |
| 500 | GIT_COMMITTER_EMAIL=${TEST_COMMITTER_LOCALNAME}@${TEST_COMMITTER_DOMAIN} |
Junio C Hamano | 29e55cd | 2006-02-10 19:11:23 -0800 | [diff] [blame] | 501 | GIT_COMMITTER_NAME='C O Mitter' |
Jeff King | f2e3937 | 2020-07-09 16:42:04 -0400 | [diff] [blame] | 502 | GIT_COMMITTER_DATE='1112354055 +0200' |
Shawn O. Pearce | 8d0fc48 | 2007-02-04 00:45:47 -0500 | [diff] [blame] | 503 | GIT_MERGE_VERBOSITY=5 |
Junio C Hamano | f824628 | 2012-01-10 22:44:45 -0800 | [diff] [blame] | 504 | GIT_MERGE_AUTOEDIT=no |
| 505 | export GIT_MERGE_VERBOSITY GIT_MERGE_AUTOEDIT |
Junio C Hamano | 29e55cd | 2006-02-10 19:11:23 -0800 | [diff] [blame] | 506 | export GIT_AUTHOR_EMAIL GIT_AUTHOR_NAME |
| 507 | export GIT_COMMITTER_EMAIL GIT_COMMITTER_NAME |
Jeff King | f2e3937 | 2020-07-09 16:42:04 -0400 | [diff] [blame] | 508 | export GIT_COMMITTER_DATE GIT_AUTHOR_DATE |
Jonathan Nieder | d33738d | 2009-11-11 17:56:07 -0600 | [diff] [blame] | 509 | export EDITOR |
Junio C Hamano | e1970ce | 2005-05-13 22:50:32 -0700 | [diff] [blame] | 510 | |
brian m. carlson | 02a32db | 2020-07-29 23:14:24 +0000 | [diff] [blame] | 511 | GIT_DEFAULT_HASH="${GIT_TEST_DEFAULT_HASH:-sha1}" |
| 512 | export GIT_DEFAULT_HASH |
Elijah Newren | f3b964a | 2021-03-20 00:03:56 +0000 | [diff] [blame] | 513 | GIT_TEST_MERGE_ALGORITHM="${GIT_TEST_MERGE_ALGORITHM:-ort}" |
| 514 | export GIT_TEST_MERGE_ALGORITHM |
brian m. carlson | 02a32db | 2020-07-29 23:14:24 +0000 | [diff] [blame] | 515 | |
Karsten Blees | 124647c | 2014-07-12 02:03:01 +0200 | [diff] [blame] | 516 | # Tests using GIT_TRACE typically don't want <timestamp> <file>:<line> output |
| 517 | GIT_TRACE_BARE=1 |
| 518 | export GIT_TRACE_BARE |
| 519 | |
Derrick Stolee | b8de3d6 | 2021-11-29 13:47:45 +0000 | [diff] [blame] | 520 | # Some tests scan the GIT_TRACE2_EVENT feed for events, but the |
| 521 | # default depth is 2, which frequently causes issues when the |
| 522 | # events are wrapped in new regions. Set it to a sufficiently |
| 523 | # large depth to avoid custom changes in the test suite. |
| 524 | GIT_TRACE2_EVENT_NESTING=100 |
| 525 | export GIT_TRACE2_EVENT_NESTING |
| 526 | |
Ben Peart | 1f357b0 | 2018-09-18 23:29:36 +0000 | [diff] [blame] | 527 | # Use specific version of the index file format |
| 528 | if test -n "${GIT_TEST_INDEX_VERSION:+isset}" |
Thomas Gummerer | 5d9fc88 | 2014-02-23 21:49:58 +0100 | [diff] [blame] | 529 | then |
Ben Peart | 1f357b0 | 2018-09-18 23:29:36 +0000 | [diff] [blame] | 530 | GIT_INDEX_VERSION="$GIT_TEST_INDEX_VERSION" |
Thomas Gummerer | 5d9fc88 | 2014-02-23 21:49:58 +0100 | [diff] [blame] | 531 | export GIT_INDEX_VERSION |
| 532 | fi |
| 533 | |
Jeff King | 5338ed2 | 2020-10-21 23:24:00 -0400 | [diff] [blame] | 534 | if test -n "$GIT_TEST_PERL_FATAL_WARNINGS" |
| 535 | then |
| 536 | GIT_PERL_FATAL_WARNINGS=1 |
| 537 | export GIT_PERL_FATAL_WARNINGS |
| 538 | fi |
| 539 | |
Eric Wong | 412e4ca | 2021-10-29 00:15:52 +0000 | [diff] [blame] | 540 | case $GIT_TEST_FSYNC in |
| 541 | '') |
| 542 | GIT_TEST_FSYNC=0 |
| 543 | export GIT_TEST_FSYNC |
| 544 | ;; |
| 545 | esac |
| 546 | |
Phillip Wood | 067109a | 2022-04-09 12:28:37 +0000 | [diff] [blame] | 547 | # Add libc MALLOC and MALLOC_PERTURB test only if we are not executing |
| 548 | # the test with valgrind and have not compiled with SANITIZE=address. |
SZEDER Gábor | 8cf5800 | 2019-01-05 02:08:55 +0100 | [diff] [blame] | 549 | if test -n "$valgrind" || |
Phillip Wood | 067109a | 2022-04-09 12:28:37 +0000 | [diff] [blame] | 550 | test -n "$SANITIZE_ADDRESS" || |
René Scharfe | ee1431b | 2012-09-26 22:16:39 +0200 | [diff] [blame] | 551 | test -n "$TEST_NO_MALLOC_CHECK" |
Junio C Hamano | 1b3185f | 2012-09-14 20:38:24 -0700 | [diff] [blame] | 552 | then |
| 553 | setup_malloc_check () { |
| 554 | : nothing |
| 555 | } |
| 556 | teardown_malloc_check () { |
| 557 | : nothing |
| 558 | } |
| 559 | else |
| 560 | setup_malloc_check () { |
Michael J Gruber | baedc59 | 2022-03-09 22:41:43 +0100 | [diff] [blame] | 561 | local g |
| 562 | local t |
Junio C Hamano | 1b3185f | 2012-09-14 20:38:24 -0700 | [diff] [blame] | 563 | MALLOC_CHECK_=3 MALLOC_PERTURB_=165 |
| 564 | export MALLOC_CHECK_ MALLOC_PERTURB_ |
Elia Pinto | 131b94a | 2022-03-04 13:37:02 +0000 | [diff] [blame] | 565 | if _GLIBC_VERSION=$(getconf GNU_LIBC_VERSION 2>/dev/null) && |
| 566 | _GLIBC_VERSION=${_GLIBC_VERSION#"glibc "} && |
| 567 | expr 2.34 \<= "$_GLIBC_VERSION" >/dev/null |
| 568 | then |
| 569 | g= |
| 570 | LD_PRELOAD="libc_malloc_debug.so.0" |
| 571 | for t in \ |
| 572 | glibc.malloc.check=1 \ |
| 573 | glibc.malloc.perturb=165 |
| 574 | do |
| 575 | g="${g#:}:$t" |
| 576 | done |
| 577 | GLIBC_TUNABLES=$g |
| 578 | export LD_PRELOAD GLIBC_TUNABLES |
| 579 | fi |
Junio C Hamano | 1b3185f | 2012-09-14 20:38:24 -0700 | [diff] [blame] | 580 | } |
| 581 | teardown_malloc_check () { |
| 582 | unset MALLOC_CHECK_ MALLOC_PERTURB_ |
Elia Pinto | 131b94a | 2022-03-04 13:37:02 +0000 | [diff] [blame] | 583 | unset LD_PRELOAD GLIBC_TUNABLES |
Junio C Hamano | 1b3185f | 2012-09-14 20:38:24 -0700 | [diff] [blame] | 584 | } |
| 585 | fi |
Elia Pinto | a731fa9 | 2012-09-14 09:54:22 -0700 | [diff] [blame] | 586 | |
Junio C Hamano | 886a390 | 2007-04-24 11:21:47 -0700 | [diff] [blame] | 587 | # Protect ourselves from common misconfiguration to export |
| 588 | # CDPATH into the environment |
| 589 | unset CDPATH |
| 590 | |
Bert Wesarg | 5565f47 | 2009-11-18 17:15:19 +0100 | [diff] [blame] | 591 | unset GREP_OPTIONS |
René Scharfe | ac00128 | 2013-01-06 18:47:57 +0100 | [diff] [blame] | 592 | unset UNZIP |
Bert Wesarg | 5565f47 | 2009-11-18 17:15:19 +0100 | [diff] [blame] | 593 | |
Robin Rosenberg | 3d5c0cc | 2006-09-23 00:35:20 +0200 | [diff] [blame] | 594 | case $(echo $GIT_TRACE |tr "[A-Z]" "[a-z]") in |
Ramsay Jones | 1c0cc75 | 2012-09-01 19:11:49 +0100 | [diff] [blame] | 595 | 1|2|true) |
Jeff King | 025232e | 2015-03-13 00:50:56 -0400 | [diff] [blame] | 596 | GIT_TRACE=4 |
Ramsay Jones | 1c0cc75 | 2012-09-01 19:11:49 +0100 | [diff] [blame] | 597 | ;; |
Christian Couder | 6ce4e61 | 2006-09-02 18:23:48 +0200 | [diff] [blame] | 598 | esac |
| 599 | |
Junio C Hamano | 3f4ab62 | 2011-08-08 11:51:00 -0700 | [diff] [blame] | 600 | # Line feed |
| 601 | LF=' |
| 602 | ' |
| 603 | |
Denton Liu | bd482d6 | 2019-09-05 15:10:05 -0700 | [diff] [blame] | 604 | # Single quote |
| 605 | SQ=\' |
| 606 | |
Jeff King | a42643a | 2014-12-15 18:15:20 -0500 | [diff] [blame] | 607 | # UTF-8 ZERO WIDTH NON-JOINER, which HFS+ ignores |
| 608 | # when case-folding filenames |
| 609 | u200c=$(printf '\342\200\214') |
| 610 | |
Ævar Arnfjörð Bjarmason | 7050791 | 2021-09-11 13:17:51 +0200 | [diff] [blame] | 611 | export _x05 _x35 LF u200c EMPTY_TREE EMPTY_BLOB ZERO_OID OID_REGEX |
Thomas Rast | 342e9ef | 2012-02-17 11:25:09 +0100 | [diff] [blame] | 612 | |
Junio C Hamano | e1970ce | 2005-05-13 22:50:32 -0700 | [diff] [blame] | 613 | # Each test should start with something like this, after copyright notices: |
| 614 | # |
| 615 | # test_description='Description of this test... |
| 616 | # This test checks if command xyzzy does the right thing... |
| 617 | # ' |
| 618 | # . ./test-lib.sh |
Richard Hansen | d5c1b7c | 2015-06-17 17:11:21 -0400 | [diff] [blame] | 619 | test "x$TERM" != "xdumb" && ( |
Richard Hansen | ca92a66 | 2015-06-17 15:06:25 -0400 | [diff] [blame] | 620 | test -t 1 && |
| 621 | tput bold >/dev/null 2>&1 && |
| 622 | tput setaf 1 >/dev/null 2>&1 && |
| 623 | tput sgr0 >/dev/null 2>&1 |
| 624 | ) && |
| 625 | color=t |
Junio C Hamano | e1970ce | 2005-05-13 22:50:32 -0700 | [diff] [blame] | 626 | |
Richard Hansen | ca92a66 | 2015-06-17 15:06:25 -0400 | [diff] [blame] | 627 | if test -n "$color" |
| 628 | then |
Richard Hansen | d5c1b7c | 2015-06-17 17:11:21 -0400 | [diff] [blame] | 629 | # Save the color control sequences now rather than run tput |
| 630 | # each time say_color() is called. This is done for two |
| 631 | # reasons: |
| 632 | # * TERM will be changed to dumb |
| 633 | # * HOME will be changed to a temporary directory and tput |
| 634 | # might need to read ~/.terminfo from the original HOME |
| 635 | # directory to get the control sequences |
| 636 | # Note: This approach assumes the control sequences don't end |
| 637 | # in a newline for any terminal of interest (command |
| 638 | # substitutions strip trailing newlines). Given that most |
| 639 | # (all?) terminals in common use are related to ECMA-48, this |
| 640 | # shouldn't be a problem. |
| 641 | say_color_error=$(tput bold; tput setaf 1) # bold red |
| 642 | say_color_skip=$(tput setaf 4) # blue |
| 643 | say_color_warn=$(tput setaf 3) # brown/yellow |
| 644 | say_color_pass=$(tput setaf 2) # green |
| 645 | say_color_info=$(tput setaf 6) # cyan |
| 646 | say_color_reset=$(tput sgr0) |
| 647 | say_color_="" # no formatting for normal text |
Richard Hansen | ca92a66 | 2015-06-17 15:06:25 -0400 | [diff] [blame] | 648 | say_color () { |
Richard Hansen | d5c1b7c | 2015-06-17 17:11:21 -0400 | [diff] [blame] | 649 | test -z "$1" && test -n "$quiet" && return |
| 650 | eval "say_color_color=\$say_color_$1" |
Richard Hansen | ca92a66 | 2015-06-17 15:06:25 -0400 | [diff] [blame] | 651 | shift |
Richard Hansen | d5c1b7c | 2015-06-17 17:11:21 -0400 | [diff] [blame] | 652 | printf "%s\\n" "$say_color_color$*$say_color_reset" |
Richard Hansen | ca92a66 | 2015-06-17 15:06:25 -0400 | [diff] [blame] | 653 | } |
| 654 | else |
| 655 | say_color() { |
| 656 | test -z "$1" && test -n "$quiet" && return |
| 657 | shift |
| 658 | printf "%s\n" "$*" |
| 659 | } |
| 660 | fi |
| 661 | |
Philippe Blain | add5240 | 2021-09-06 04:38:59 +0000 | [diff] [blame] | 662 | USER_TERM="$TERM" |
Richard Hansen | d5c1b7c | 2015-06-17 17:11:21 -0400 | [diff] [blame] | 663 | TERM=dumb |
Philippe Blain | add5240 | 2021-09-06 04:38:59 +0000 | [diff] [blame] | 664 | export TERM USER_TERM |
Richard Hansen | d5c1b7c | 2015-06-17 17:11:21 -0400 | [diff] [blame] | 665 | |
Fabian Stelzer | a671408 | 2021-12-01 09:53:15 +0100 | [diff] [blame] | 666 | # What is written by tests to stdout and stderr is sent to different places |
| 667 | # depending on the test mode (e.g. /dev/null in non-verbose mode, piped to tee |
| 668 | # with --tee option, etc.). We save the original stdin to FD #6 and stdout and |
| 669 | # stderr to #5 and #7, so that the test framework can use them (e.g. for |
| 670 | # printing errors within the test framework) independently of the test mode. |
| 671 | exec 5>&1 |
| 672 | exec 6<&0 |
| 673 | exec 7>&2 |
| 674 | |
Ævar Arnfjörð Bjarmason | 8583bf7 | 2021-10-14 02:47:28 +0200 | [diff] [blame] | 675 | _error_exit () { |
Johannes Schindelin | 78d5e4c | 2022-05-21 22:18:46 +0000 | [diff] [blame] | 676 | finalize_test_output |
Clemens Buchacher | 6e7b5aa | 2009-06-01 14:14:41 +0200 | [diff] [blame] | 677 | GIT_EXIT_OK=t |
Pierre Habouzit | 55db1df | 2007-10-24 22:03:38 +0200 | [diff] [blame] | 678 | exit 1 |
| 679 | } |
| 680 | |
Ævar Arnfjörð Bjarmason | 8583bf7 | 2021-10-14 02:47:28 +0200 | [diff] [blame] | 681 | error () { |
| 682 | say_color error "error: $*" |
| 683 | _error_exit |
| 684 | } |
| 685 | |
SZEDER Gábor | 165293a | 2018-11-19 14:13:26 +0100 | [diff] [blame] | 686 | BUG () { |
| 687 | error >&7 "bug in the test script: $*" |
| 688 | } |
| 689 | |
Ævar Arnfjörð Bjarmason | 234383c | 2021-10-14 02:47:29 +0200 | [diff] [blame] | 690 | BAIL_OUT () { |
| 691 | test $# -ne 1 && BUG "1 param" |
| 692 | |
| 693 | # Do not change "Bail out! " string. It's part of TAP syntax: |
| 694 | # https://testanything.org/tap-specification.html |
| 695 | local bail_out="Bail out! " |
| 696 | local message="$1" |
| 697 | |
Fabian Stelzer | a671408 | 2021-12-01 09:53:15 +0100 | [diff] [blame] | 698 | say_color >&5 error $bail_out "$message" |
Ævar Arnfjörð Bjarmason | 234383c | 2021-10-14 02:47:29 +0200 | [diff] [blame] | 699 | _error_exit |
| 700 | } |
| 701 | |
Pierre Habouzit | 55db1df | 2007-10-24 22:03:38 +0200 | [diff] [blame] | 702 | say () { |
| 703 | say_color info "$*" |
| 704 | } |
| 705 | |
Jeff King | 614fe01 | 2016-10-22 00:45:06 -0400 | [diff] [blame] | 706 | if test -n "$HARNESS_ACTIVE" |
| 707 | then |
| 708 | if test "$verbose" = t || test -n "$verbose_only" |
| 709 | then |
Ævar Arnfjörð Bjarmason | 234383c | 2021-10-14 02:47:29 +0200 | [diff] [blame] | 710 | BAIL_OUT 'verbose mode forbidden under TAP harness; try --verbose-log' |
Jeff King | 614fe01 | 2016-10-22 00:45:06 -0400 | [diff] [blame] | 711 | fi |
| 712 | fi |
| 713 | |
Michele Ballabio | 570f322 | 2007-11-10 15:17:25 +0100 | [diff] [blame] | 714 | test "${test_description}" != "" || |
| 715 | error "Test script did not set test_description." |
| 716 | |
| 717 | if test "$help" = "t" |
| 718 | then |
Uwe Storbeck | cb1aefd | 2014-03-18 01:14:11 +0100 | [diff] [blame] | 719 | printf '%s\n' "$test_description" |
Michele Ballabio | 570f322 | 2007-11-10 15:17:25 +0100 | [diff] [blame] | 720 | exit 0 |
| 721 | fi |
| 722 | |
Jeff King | 452320f | 2016-10-21 06:48:00 -0400 | [diff] [blame] | 723 | if test "$verbose_log" = "t" |
| 724 | then |
| 725 | exec 3>>"$GIT_TEST_TEE_OUTPUT_FILE" 4>&3 |
| 726 | elif test "$verbose" = "t" |
Junio C Hamano | e1970ce | 2005-05-13 22:50:32 -0700 | [diff] [blame] | 727 | then |
| 728 | exec 4>&2 3>&1 |
| 729 | else |
| 730 | exec 4>/dev/null 3>/dev/null |
| 731 | fi |
| 732 | |
Jeff King | d88785e | 2016-05-11 09:44:04 -0400 | [diff] [blame] | 733 | # Send any "-x" output directly to stderr to avoid polluting tests |
| 734 | # which capture stderr. We can do this unconditionally since it |
| 735 | # has no effect if tracing isn't turned on. |
| 736 | # |
| 737 | # Note that this sets up the trace fd as soon as we assign the variable, so it |
| 738 | # must come after the creation of descriptor 4 above. Likewise, we must never |
| 739 | # unset this, as it has the side effect of closing descriptor 4, which we |
| 740 | # use to show verbose tests to the user. |
| 741 | # |
| 742 | # Note also that we don't need or want to export it. The tracing is local to |
| 743 | # this shell, and we would not want to influence any shells we exec. |
| 744 | BASH_XTRACEFD=4 |
| 745 | |
Junio C Hamano | e1970ce | 2005-05-13 22:50:32 -0700 | [diff] [blame] | 746 | test_failure=0 |
| 747 | test_count=0 |
Junio C Hamano | 41ac414 | 2008-02-01 01:50:53 -0800 | [diff] [blame] | 748 | test_fixed=0 |
| 749 | test_broken=0 |
Sverre Rabbelier | 2d84e9f | 2008-06-08 16:04:33 +0200 | [diff] [blame] | 750 | test_success=0 |
Junio C Hamano | e1970ce | 2005-05-13 22:50:32 -0700 | [diff] [blame] | 751 | |
Fabian Stelzer | 49da404 | 2021-11-20 16:03:59 +0100 | [diff] [blame] | 752 | test_missing_prereq= |
| 753 | |
Ævar Arnfjörð Bjarmason | d998bd4 | 2010-06-24 17:44:46 +0000 | [diff] [blame] | 754 | test_external_has_tap=0 |
| 755 | |
Clemens Buchacher | faa4bc3 | 2008-02-27 20:28:45 +0100 | [diff] [blame] | 756 | die () { |
Clemens Buchacher | 6e7b5aa | 2009-06-01 14:14:41 +0200 | [diff] [blame] | 757 | code=$? |
Johannes Schindelin | 900721e | 2019-03-13 13:24:11 +0100 | [diff] [blame] | 758 | # This is responsible for running the atexit commands even when a |
| 759 | # test script run with '--immediate' fails, or when the user hits |
| 760 | # ctrl-C, i.e. when 'test_done' is not invoked at all. |
| 761 | test_atexit_handler || code=$? |
Clemens Buchacher | 6e7b5aa | 2009-06-01 14:14:41 +0200 | [diff] [blame] | 762 | if test -n "$GIT_EXIT_OK" |
| 763 | then |
| 764 | exit $code |
| 765 | else |
| 766 | echo >&5 "FATAL: Unexpected exit with code $code" |
| 767 | exit 1 |
| 768 | fi |
Clemens Buchacher | faa4bc3 | 2008-02-27 20:28:45 +0100 | [diff] [blame] | 769 | } |
| 770 | |
Clemens Buchacher | 6e7b5aa | 2009-06-01 14:14:41 +0200 | [diff] [blame] | 771 | GIT_EXIT_OK= |
Markus Heidelberg | 3564131 | 2009-01-20 00:43:26 +0100 | [diff] [blame] | 772 | trap 'die' EXIT |
SZEDER Gábor | c5c39f4 | 2019-03-13 13:24:09 +0100 | [diff] [blame] | 773 | # Disable '-x' tracing, because with some shells, notably dash, it |
| 774 | # prevents running the cleanup commands when a test script run with |
| 775 | # '--verbose-log -x' is interrupted. |
| 776 | trap '{ code=$?; set +x; } 2>/dev/null; exit $code' INT TERM HUP |
Pavel Roskin | 4118427 | 2005-08-11 12:00:40 -0400 | [diff] [blame] | 777 | |
Thomas Rast | 12a29b1 | 2012-02-17 11:25:08 +0100 | [diff] [blame] | 778 | # The user-facing functions are loaded from a separate file so that |
| 779 | # test_perf subshells can have them too |
Junio C Hamano | 3c8f12c | 2012-06-24 22:01:35 -0700 | [diff] [blame] | 780 | . "$TEST_DIRECTORY/test-lib-functions.sh" |
Jonathan Nieder | 05236a5 | 2010-10-17 02:36:58 +0800 | [diff] [blame] | 781 | |
Junio C Hamano | 886856a | 2005-05-14 00:24:27 -0700 | [diff] [blame] | 782 | # You are not expected to call test_ok_ and test_failure_ directly, use |
Torstein Hegge | 3fa3666 | 2013-10-27 10:56:33 +0100 | [diff] [blame] | 783 | # the test_expect_* functions instead. |
Junio C Hamano | 886856a | 2005-05-14 00:24:27 -0700 | [diff] [blame] | 784 | |
| 785 | test_ok_ () { |
Johannes Sixt | d5d9de1 | 2009-02-05 20:59:27 +0100 | [diff] [blame] | 786 | test_success=$(($test_success + 1)) |
Thomas Rast | 633fe50 | 2013-10-19 23:06:08 +0200 | [diff] [blame] | 787 | say_color "" "ok $test_count - $@" |
Johannes Schindelin | 3069f2a | 2022-05-21 22:18:56 +0000 | [diff] [blame] | 788 | finalize_test_case_output ok "$@" |
Junio C Hamano | e1970ce | 2005-05-13 22:50:32 -0700 | [diff] [blame] | 789 | } |
| 790 | |
Junio C Hamano | 886856a | 2005-05-14 00:24:27 -0700 | [diff] [blame] | 791 | test_failure_ () { |
Johannes Schindelin | 3069f2a | 2022-05-21 22:18:56 +0000 | [diff] [blame] | 792 | failure_label=$1 |
Johannes Sixt | d5d9de1 | 2009-02-05 20:59:27 +0100 | [diff] [blame] | 793 | test_failure=$(($test_failure + 1)) |
Junio C Hamano | e31600b | 2020-05-15 09:47:51 -0700 | [diff] [blame] | 794 | say_color error "not ok $test_count - $1" |
Junio C Hamano | bf0dd8a | 2005-07-22 19:09:34 -0700 | [diff] [blame] | 795 | shift |
Uwe Storbeck | cb1aefd | 2014-03-18 01:14:11 +0100 | [diff] [blame] | 796 | printf '%s\n' "$*" | sed -e 's/^/# /' |
Ævar Arnfjörð Bjarmason | bbfbcd2 | 2022-03-23 21:51:31 +0100 | [diff] [blame] | 797 | if test -n "$immediate" |
| 798 | then |
| 799 | say_color error "1..$test_count" |
| 800 | _error_exit |
| 801 | fi |
Johannes Schindelin | 3069f2a | 2022-05-21 22:18:56 +0000 | [diff] [blame] | 802 | finalize_test_case_output failure "$failure_label" "$@" |
Junio C Hamano | 886856a | 2005-05-14 00:24:27 -0700 | [diff] [blame] | 803 | } |
| 804 | |
Junio C Hamano | 41ac414 | 2008-02-01 01:50:53 -0800 | [diff] [blame] | 805 | test_known_broken_ok_ () { |
Junio C Hamano | 41ac414 | 2008-02-01 01:50:53 -0800 | [diff] [blame] | 806 | test_fixed=$(($test_fixed+1)) |
Thomas Rast | 633fe50 | 2013-10-19 23:06:08 +0200 | [diff] [blame] | 807 | say_color error "ok $test_count - $@ # TODO known breakage vanished" |
Johannes Schindelin | 3069f2a | 2022-05-21 22:18:56 +0000 | [diff] [blame] | 808 | finalize_test_case_output fixed "$@" |
Junio C Hamano | 41ac414 | 2008-02-01 01:50:53 -0800 | [diff] [blame] | 809 | } |
| 810 | |
| 811 | test_known_broken_failure_ () { |
Junio C Hamano | 41ac414 | 2008-02-01 01:50:53 -0800 | [diff] [blame] | 812 | test_broken=$(($test_broken+1)) |
Thomas Rast | 633fe50 | 2013-10-19 23:06:08 +0200 | [diff] [blame] | 813 | say_color warn "not ok $test_count - $@ # TODO known breakage" |
Johannes Schindelin | 3069f2a | 2022-05-21 22:18:56 +0000 | [diff] [blame] | 814 | finalize_test_case_output broken "$@" |
Junio C Hamano | 41ac414 | 2008-02-01 01:50:53 -0800 | [diff] [blame] | 815 | } |
Junio C Hamano | 886856a | 2005-05-14 00:24:27 -0700 | [diff] [blame] | 816 | |
| 817 | test_debug () { |
Junio C Hamano | 8e832eb | 2005-08-10 22:53:27 -0700 | [diff] [blame] | 818 | test "$debug" = "" || eval "$1" |
Junio C Hamano | e1970ce | 2005-05-13 22:50:32 -0700 | [diff] [blame] | 819 | } |
| 820 | |
Thomas Rast | e6a6ddc | 2013-06-18 14:25:58 +0200 | [diff] [blame] | 821 | match_pattern_list () { |
| 822 | arg="$1" |
| 823 | shift |
| 824 | test -z "$*" && return 1 |
Jeff King | 560bf51 | 2021-06-16 06:23:07 -0400 | [diff] [blame] | 825 | # We need to use "$*" to get field-splitting, but we want to |
| 826 | # disable globbing, since we are matching against an arbitrary |
| 827 | # $arg, not what's in the filesystem. Using "set -f" accomplishes |
| 828 | # that, but we must do it in a subshell to avoid impacting the |
| 829 | # rest of the script. The exit value of the subshell becomes |
| 830 | # the function's return value. |
| 831 | ( |
| 832 | set -f |
| 833 | for pattern_ in $* |
| 834 | do |
| 835 | case "$arg" in |
| 836 | $pattern_) |
| 837 | exit 0 |
| 838 | ;; |
| 839 | esac |
| 840 | done |
| 841 | exit 1 |
| 842 | ) |
Thomas Rast | e6a6ddc | 2013-06-18 14:25:58 +0200 | [diff] [blame] | 843 | } |
| 844 | |
Ilya Bobyr | 0445e6f | 2014-04-30 02:50:44 -0700 | [diff] [blame] | 845 | match_test_selector_list () { |
Elijah Newren | f21ac36 | 2020-10-18 00:23:45 +0000 | [diff] [blame] | 846 | operation="$1" |
| 847 | shift |
Ilya Bobyr | 0445e6f | 2014-04-30 02:50:44 -0700 | [diff] [blame] | 848 | title="$1" |
| 849 | shift |
| 850 | arg="$1" |
| 851 | shift |
| 852 | test -z "$1" && return 0 |
| 853 | |
Elijah Newren | f21ac36 | 2020-10-18 00:23:45 +0000 | [diff] [blame] | 854 | # Commas are accepted as separators. |
Ilya Bobyr | 0445e6f | 2014-04-30 02:50:44 -0700 | [diff] [blame] | 855 | OLDIFS=$IFS |
Elijah Newren | f21ac36 | 2020-10-18 00:23:45 +0000 | [diff] [blame] | 856 | IFS=',' |
Ilya Bobyr | 0445e6f | 2014-04-30 02:50:44 -0700 | [diff] [blame] | 857 | set -- $1 |
| 858 | IFS=$OLDIFS |
| 859 | |
| 860 | # If the first selector is negative we include by default. |
| 861 | include= |
| 862 | case "$1" in |
| 863 | !*) include=t ;; |
| 864 | esac |
| 865 | |
| 866 | for selector |
| 867 | do |
| 868 | orig_selector=$selector |
| 869 | |
| 870 | positive=t |
| 871 | case "$selector" in |
| 872 | !*) |
| 873 | positive= |
| 874 | selector=${selector##?} |
| 875 | ;; |
| 876 | esac |
| 877 | |
| 878 | test -z "$selector" && continue |
| 879 | |
| 880 | case "$selector" in |
| 881 | *-*) |
| 882 | if expr "z${selector%%-*}" : "z[0-9]*[^0-9]" >/dev/null |
| 883 | then |
Elijah Newren | f21ac36 | 2020-10-18 00:23:45 +0000 | [diff] [blame] | 884 | echo "error: $operation: invalid non-numeric in range" \ |
Ilya Bobyr | 0445e6f | 2014-04-30 02:50:44 -0700 | [diff] [blame] | 885 | "start: '$orig_selector'" >&2 |
| 886 | exit 1 |
| 887 | fi |
| 888 | if expr "z${selector#*-}" : "z[0-9]*[^0-9]" >/dev/null |
| 889 | then |
Elijah Newren | f21ac36 | 2020-10-18 00:23:45 +0000 | [diff] [blame] | 890 | echo "error: $operation: invalid non-numeric in range" \ |
Ilya Bobyr | 0445e6f | 2014-04-30 02:50:44 -0700 | [diff] [blame] | 891 | "end: '$orig_selector'" >&2 |
| 892 | exit 1 |
| 893 | fi |
| 894 | ;; |
| 895 | *) |
| 896 | if expr "z$selector" : "z[0-9]*[^0-9]" >/dev/null |
| 897 | then |
Elijah Newren | f21ac36 | 2020-10-18 00:23:45 +0000 | [diff] [blame] | 898 | case "$title" in *${selector}*) |
| 899 | include=$positive |
| 900 | ;; |
| 901 | esac |
| 902 | continue |
Ilya Bobyr | 0445e6f | 2014-04-30 02:50:44 -0700 | [diff] [blame] | 903 | fi |
| 904 | esac |
| 905 | |
| 906 | # Short cut for "obvious" cases |
| 907 | test -z "$include" && test -z "$positive" && continue |
| 908 | test -n "$include" && test -n "$positive" && continue |
| 909 | |
| 910 | case "$selector" in |
| 911 | -*) |
| 912 | if test $arg -le ${selector#-} |
| 913 | then |
| 914 | include=$positive |
| 915 | fi |
| 916 | ;; |
| 917 | *-) |
| 918 | if test $arg -ge ${selector%-} |
| 919 | then |
| 920 | include=$positive |
| 921 | fi |
| 922 | ;; |
| 923 | *-*) |
| 924 | if test ${selector%%-*} -le $arg \ |
| 925 | && test $arg -le ${selector#*-} |
| 926 | then |
| 927 | include=$positive |
| 928 | fi |
| 929 | ;; |
| 930 | *) |
| 931 | if test $arg -eq $selector |
| 932 | then |
| 933 | include=$positive |
| 934 | fi |
| 935 | ;; |
| 936 | esac |
| 937 | done |
| 938 | |
| 939 | test -n "$include" |
| 940 | } |
| 941 | |
Thomas Rast | ff09af3 | 2013-06-23 20:12:56 +0200 | [diff] [blame] | 942 | maybe_teardown_verbose () { |
| 943 | test -z "$verbose_only" && return |
| 944 | exec 4>/dev/null 3>/dev/null |
| 945 | verbose= |
| 946 | } |
| 947 | |
| 948 | last_verbose=t |
| 949 | maybe_setup_verbose () { |
| 950 | test -z "$verbose_only" && return |
Jeff King | 560bf51 | 2021-06-16 06:23:07 -0400 | [diff] [blame] | 951 | if match_pattern_list $test_count "$verbose_only" |
Thomas Rast | ff09af3 | 2013-06-23 20:12:56 +0200 | [diff] [blame] | 952 | then |
| 953 | exec 4>&2 3>&1 |
| 954 | # Emit a delimiting blank line when going from |
| 955 | # non-verbose to verbose. Within verbose mode the |
| 956 | # delimiter is printed by test_expect_*. The choice |
| 957 | # of the initial $last_verbose is such that before |
| 958 | # test 1, we do not print it. |
| 959 | test -z "$last_verbose" && echo >&3 "" |
| 960 | verbose=t |
| 961 | else |
| 962 | exec 4>/dev/null 3>/dev/null |
| 963 | verbose= |
| 964 | fi |
| 965 | last_verbose=$verbose |
| 966 | } |
| 967 | |
Thomas Rast | 5dfc368 | 2013-06-23 20:12:57 +0200 | [diff] [blame] | 968 | maybe_teardown_valgrind () { |
| 969 | test -z "$GIT_VALGRIND" && return |
| 970 | GIT_VALGRIND_ENABLED= |
| 971 | } |
| 972 | |
| 973 | maybe_setup_valgrind () { |
| 974 | test -z "$GIT_VALGRIND" && return |
Thomas Rast | 26a0730 | 2013-10-19 23:06:07 +0200 | [diff] [blame] | 975 | if test -z "$valgrind_only" |
Thomas Rast | 5dfc368 | 2013-06-23 20:12:57 +0200 | [diff] [blame] | 976 | then |
| 977 | GIT_VALGRIND_ENABLED=t |
| 978 | return |
| 979 | fi |
| 980 | GIT_VALGRIND_ENABLED= |
Jeff King | 560bf51 | 2021-06-16 06:23:07 -0400 | [diff] [blame] | 981 | if match_pattern_list $test_count "$valgrind_only" |
Thomas Rast | 5dfc368 | 2013-06-23 20:12:57 +0200 | [diff] [blame] | 982 | then |
| 983 | GIT_VALGRIND_ENABLED=t |
| 984 | fi |
| 985 | } |
| 986 | |
Johannes Schindelin | 477dcad | 2020-03-26 15:35:26 +0000 | [diff] [blame] | 987 | trace_level_=0 |
Jeff King | 9b5fe78 | 2015-08-06 01:33:57 -0400 | [diff] [blame] | 988 | want_trace () { |
Jeff King | f5ba2de | 2017-12-08 05:47:17 -0500 | [diff] [blame] | 989 | test "$trace" = t && { |
| 990 | test "$verbose" = t || test "$verbose_log" = t |
| 991 | } |
Jeff King | 9b5fe78 | 2015-08-06 01:33:57 -0400 | [diff] [blame] | 992 | } |
| 993 | |
Jeff King | a136f6d | 2014-10-10 02:47:27 -0400 | [diff] [blame] | 994 | # This is a separate function because some tests use |
| 995 | # "return" to end a test_expect_success block early |
| 996 | # (and we want to make sure we run any cleanup like |
| 997 | # "set +x"). |
| 998 | test_eval_inner_ () { |
| 999 | # Do not add anything extra (including LF) after '$*' |
| 1000 | eval " |
Johannes Schindelin | 477dcad | 2020-03-26 15:35:26 +0000 | [diff] [blame] | 1001 | want_trace && trace_level_=$(($trace_level_+1)) && set -x |
Jeff King | a136f6d | 2014-10-10 02:47:27 -0400 | [diff] [blame] | 1002 | $*" |
| 1003 | } |
| 1004 | |
Jonathan Nieder | a7c58f2 | 2011-08-08 03:17:09 +0200 | [diff] [blame] | 1005 | test_eval_ () { |
Jeff King | 90c8a1d | 2017-12-08 05:47:08 -0500 | [diff] [blame] | 1006 | # If "-x" tracing is in effect, then we want to avoid polluting stderr |
| 1007 | # with non-test commands. But once in "set -x" mode, we cannot prevent |
Jeff King | a136f6d | 2014-10-10 02:47:27 -0400 | [diff] [blame] | 1008 | # the shell from printing the "set +x" to turn it off (nor the saving |
| 1009 | # of $? before that). But we can make sure that the output goes to |
| 1010 | # /dev/null. |
| 1011 | # |
Jeff King | 90c8a1d | 2017-12-08 05:47:08 -0500 | [diff] [blame] | 1012 | # There are a few subtleties here: |
| 1013 | # |
| 1014 | # - we have to redirect descriptor 4 in addition to 2, to cover |
| 1015 | # BASH_XTRACEFD |
| 1016 | # |
| 1017 | # - the actual eval has to come before the redirection block (since |
| 1018 | # it needs to see descriptor 4 to set up its stderr) |
| 1019 | # |
| 1020 | # - likewise, any error message we print must be outside the block to |
| 1021 | # access descriptor 4 |
| 1022 | # |
| 1023 | # - checking $? has to come immediately after the eval, but it must |
| 1024 | # be _inside_ the block to avoid polluting the "set -x" output |
| 1025 | # |
| 1026 | |
| 1027 | test_eval_inner_ "$@" </dev/null >&3 2>&4 |
Jeff King | a136f6d | 2014-10-10 02:47:27 -0400 | [diff] [blame] | 1028 | { |
Jeff King | a136f6d | 2014-10-10 02:47:27 -0400 | [diff] [blame] | 1029 | test_eval_ret_=$? |
Jeff King | 9b5fe78 | 2015-08-06 01:33:57 -0400 | [diff] [blame] | 1030 | if want_trace |
Jeff King | a136f6d | 2014-10-10 02:47:27 -0400 | [diff] [blame] | 1031 | then |
Johannes Schindelin | 477dcad | 2020-03-26 15:35:26 +0000 | [diff] [blame] | 1032 | test 1 = $trace_level_ && set +x |
| 1033 | trace_level_=$(($trace_level_-1)) |
Jeff King | a136f6d | 2014-10-10 02:47:27 -0400 | [diff] [blame] | 1034 | fi |
Jeff King | 90c8a1d | 2017-12-08 05:47:08 -0500 | [diff] [blame] | 1035 | } 2>/dev/null 4>&2 |
| 1036 | |
| 1037 | if test "$test_eval_ret_" != 0 && want_trace |
| 1038 | then |
| 1039 | say_color error >&4 "error: last command exited with \$?=$test_eval_ret_" |
| 1040 | fi |
Jeff King | a136f6d | 2014-10-10 02:47:27 -0400 | [diff] [blame] | 1041 | return $test_eval_ret_ |
Jonathan Nieder | a7c58f2 | 2011-08-08 03:17:09 +0200 | [diff] [blame] | 1042 | } |
| 1043 | |
Pavel Roskin | 4d9d62f | 2005-08-10 23:56:21 -0400 | [diff] [blame] | 1044 | test_run_ () { |
Jonathan Nieder | b6b0afd | 2010-05-06 03:41:10 -0500 | [diff] [blame] | 1045 | test_cleanup=: |
Junio C Hamano | b586744 | 2011-06-27 11:02:22 -0700 | [diff] [blame] | 1046 | expecting_failure=$2 |
Jeff King | bb79af9 | 2015-03-20 06:05:48 -0400 | [diff] [blame] | 1047 | |
Jeff King | 92b269f | 2015-04-22 16:09:57 -0400 | [diff] [blame] | 1048 | if test "${GIT_TEST_CHAIN_LINT:-1}" != 0; then |
Jeff King | 2a01ef8 | 2015-08-06 01:31:47 -0400 | [diff] [blame] | 1049 | # turn off tracing for this test-eval, as it simply creates |
| 1050 | # confusing noise in the "-x" output |
| 1051 | trace_tmp=$trace |
| 1052 | trace= |
Jeff King | bb79af9 | 2015-03-20 06:05:48 -0400 | [diff] [blame] | 1053 | # 117 is magic because it is unlikely to match the exit |
| 1054 | # code of other programs |
Jeff King | 2d86a96 | 2021-05-13 02:25:53 -0400 | [diff] [blame] | 1055 | if test "OK-117" != "$(test_eval_ "(exit 117) && $1${LF}${LF}echo OK-\$?" 3>&1)" || |
| 1056 | { |
| 1057 | test "${GIT_TEST_CHAIN_LINT_HARDER:-${GIT_TEST_CHAIN_LINT_HARDER_DEFAULT:-1}}" != 0 && |
| 1058 | $(printf '%s\n' "$1" | sed -f "$GIT_BUILD_DIR/t/chainlint.sed" | grep -q '?![A-Z][A-Z]*?!') |
| 1059 | } |
Junio C Hamano | 99a64e4 | 2017-03-22 22:43:18 -0700 | [diff] [blame] | 1060 | then |
SZEDER Gábor | 165293a | 2018-11-19 14:13:26 +0100 | [diff] [blame] | 1061 | BUG "broken &&-chain or run-away HERE-DOC: $1" |
Jeff King | bb79af9 | 2015-03-20 06:05:48 -0400 | [diff] [blame] | 1062 | fi |
Jeff King | 2a01ef8 | 2015-08-06 01:31:47 -0400 | [diff] [blame] | 1063 | trace=$trace_tmp |
Jeff King | bb79af9 | 2015-03-20 06:05:48 -0400 | [diff] [blame] | 1064 | fi |
| 1065 | |
Thomas Rast | a57397b | 2013-06-17 11:18:46 +0200 | [diff] [blame] | 1066 | setup_malloc_check |
Jonathan Nieder | a7c58f2 | 2011-08-08 03:17:09 +0200 | [diff] [blame] | 1067 | test_eval_ "$1" |
Jonathan Nieder | b6b0afd | 2010-05-06 03:41:10 -0500 | [diff] [blame] | 1068 | eval_ret=$? |
Thomas Rast | a57397b | 2013-06-17 11:18:46 +0200 | [diff] [blame] | 1069 | teardown_malloc_check |
Junio C Hamano | b586744 | 2011-06-27 11:02:22 -0700 | [diff] [blame] | 1070 | |
Jeff King | a136f6d | 2014-10-10 02:47:27 -0400 | [diff] [blame] | 1071 | if test -z "$immediate" || test $eval_ret = 0 || |
| 1072 | test -n "$expecting_failure" && test "$test_cleanup" != ":" |
Junio C Hamano | b586744 | 2011-06-27 11:02:22 -0700 | [diff] [blame] | 1073 | then |
Junio C Hamano | 1b3185f | 2012-09-14 20:38:24 -0700 | [diff] [blame] | 1074 | setup_malloc_check |
Jonathan Nieder | a7c58f2 | 2011-08-08 03:17:09 +0200 | [diff] [blame] | 1075 | test_eval_ "$test_cleanup" |
Junio C Hamano | 1b3185f | 2012-09-14 20:38:24 -0700 | [diff] [blame] | 1076 | teardown_malloc_check |
Junio C Hamano | b586744 | 2011-06-27 11:02:22 -0700 | [diff] [blame] | 1077 | fi |
Ramsay Jones | 1c0cc75 | 2012-09-01 19:11:49 +0100 | [diff] [blame] | 1078 | if test "$verbose" = "t" && test -n "$HARNESS_ACTIVE" |
| 1079 | then |
Ævar Arnfjörð Bjarmason | 57e1538 | 2010-06-24 17:44:47 +0000 | [diff] [blame] | 1080 | echo "" |
| 1081 | fi |
Jonathan Nieder | aa0bcf9 | 2011-08-08 03:15:34 +0200 | [diff] [blame] | 1082 | return "$eval_ret" |
Pavel Roskin | 4d9d62f | 2005-08-10 23:56:21 -0400 | [diff] [blame] | 1083 | } |
| 1084 | |
Thomas Rast | ae75342 | 2013-06-18 14:25:59 +0200 | [diff] [blame] | 1085 | test_start_ () { |
Johannes Sixt | 8586f98 | 2009-02-05 21:20:56 +0100 | [diff] [blame] | 1086 | test_count=$(($test_count+1)) |
Thomas Rast | ff09af3 | 2013-06-23 20:12:56 +0200 | [diff] [blame] | 1087 | maybe_setup_verbose |
Thomas Rast | 5dfc368 | 2013-06-23 20:12:57 +0200 | [diff] [blame] | 1088 | maybe_setup_valgrind |
Johannes Schindelin | 0f5ae59 | 2022-05-21 22:18:51 +0000 | [diff] [blame] | 1089 | start_test_case_output "$@" |
Thomas Rast | ae75342 | 2013-06-18 14:25:59 +0200 | [diff] [blame] | 1090 | } |
| 1091 | |
| 1092 | test_finish_ () { |
| 1093 | echo >&3 "" |
Thomas Rast | 5dfc368 | 2013-06-23 20:12:57 +0200 | [diff] [blame] | 1094 | maybe_teardown_valgrind |
Thomas Rast | ff09af3 | 2013-06-23 20:12:56 +0200 | [diff] [blame] | 1095 | maybe_teardown_verbose |
Johannes Schindelin | af9912e | 2019-01-29 06:19:34 -0800 | [diff] [blame] | 1096 | if test -n "$GIT_TEST_TEE_OFFSET" |
| 1097 | then |
| 1098 | GIT_TEST_TEE_OFFSET=$(test-tool path-utils file-size \ |
| 1099 | "$GIT_TEST_TEE_OUTPUT_FILE") |
| 1100 | fi |
Thomas Rast | ae75342 | 2013-06-18 14:25:59 +0200 | [diff] [blame] | 1101 | } |
| 1102 | |
| 1103 | test_skip () { |
Junio C Hamano | 04ece59 | 2006-12-28 17:58:00 -0800 | [diff] [blame] | 1104 | to_skip= |
Ilya Bobyr | ef2ac68 | 2014-04-30 02:50:43 -0700 | [diff] [blame] | 1105 | skipped_reason= |
Jeff King | 560bf51 | 2021-06-16 06:23:07 -0400 | [diff] [blame] | 1106 | if match_pattern_list $this_test.$test_count "$GIT_SKIP_TESTS" |
Thomas Rast | e6a6ddc | 2013-06-18 14:25:58 +0200 | [diff] [blame] | 1107 | then |
| 1108 | to_skip=t |
Ilya Bobyr | ef2ac68 | 2014-04-30 02:50:43 -0700 | [diff] [blame] | 1109 | skipped_reason="GIT_SKIP_TESTS" |
Thomas Rast | e6a6ddc | 2013-06-18 14:25:58 +0200 | [diff] [blame] | 1110 | fi |
SZEDER Gábor | e031669 | 2019-11-12 13:24:38 +0100 | [diff] [blame] | 1111 | if test -z "$to_skip" && test -n "$run_list" && |
Elijah Newren | f21ac36 | 2020-10-18 00:23:45 +0000 | [diff] [blame] | 1112 | ! match_test_selector_list '--run' "$1" $test_count "$run_list" |
SZEDER Gábor | e031669 | 2019-11-12 13:24:38 +0100 | [diff] [blame] | 1113 | then |
| 1114 | to_skip=t |
| 1115 | skipped_reason="--run" |
| 1116 | fi |
Jonathan Nieder | 05236a5 | 2010-10-17 02:36:58 +0800 | [diff] [blame] | 1117 | if test -z "$to_skip" && test -n "$test_prereq" && |
| 1118 | ! test_have_prereq "$test_prereq" |
Johannes Sixt | a7bb394 | 2009-03-01 21:04:46 +0100 | [diff] [blame] | 1119 | then |
| 1120 | to_skip=t |
Ilya Bobyr | ef2ac68 | 2014-04-30 02:50:43 -0700 | [diff] [blame] | 1121 | |
Jonathan Nieder | 07431fc | 2010-08-24 02:34:10 -0500 | [diff] [blame] | 1122 | of_prereq= |
Jonathan Nieder | 05236a5 | 2010-10-17 02:36:58 +0800 | [diff] [blame] | 1123 | if test "$missing_prereq" != "$test_prereq" |
Jonathan Nieder | 07431fc | 2010-08-24 02:34:10 -0500 | [diff] [blame] | 1124 | then |
Jonathan Nieder | 05236a5 | 2010-10-17 02:36:58 +0800 | [diff] [blame] | 1125 | of_prereq=" of $test_prereq" |
Jonathan Nieder | 07431fc | 2010-08-24 02:34:10 -0500 | [diff] [blame] | 1126 | fi |
Ilya Bobyr | ef2ac68 | 2014-04-30 02:50:43 -0700 | [diff] [blame] | 1127 | skipped_reason="missing $missing_prereq${of_prereq}" |
Fabian Stelzer | 49da404 | 2021-11-20 16:03:59 +0100 | [diff] [blame] | 1128 | |
| 1129 | # Keep a list of all the missing prereq for result aggregation |
| 1130 | if test -z "$missing_prereq" |
| 1131 | then |
| 1132 | test_missing_prereq=$missing_prereq |
| 1133 | else |
| 1134 | test_missing_prereq="$test_missing_prereq,$missing_prereq" |
| 1135 | fi |
Ilya Bobyr | ef2ac68 | 2014-04-30 02:50:43 -0700 | [diff] [blame] | 1136 | fi |
Jonathan Nieder | 07431fc | 2010-08-24 02:34:10 -0500 | [diff] [blame] | 1137 | |
Ilya Bobyr | ef2ac68 | 2014-04-30 02:50:43 -0700 | [diff] [blame] | 1138 | case "$to_skip" in |
| 1139 | t) |
Johannes Schindelin | 2223190 | 2019-01-29 06:19:27 -0800 | [diff] [blame] | 1140 | |
Ilya Bobyr | ef2ac68 | 2014-04-30 02:50:43 -0700 | [diff] [blame] | 1141 | say_color skip "ok $test_count # skip $1 ($skipped_reason)" |
Junio C Hamano | 04ece59 | 2006-12-28 17:58:00 -0800 | [diff] [blame] | 1142 | : true |
Johannes Schindelin | 3069f2a | 2022-05-21 22:18:56 +0000 | [diff] [blame] | 1143 | finalize_test_case_output skip "$@" |
Junio C Hamano | 04ece59 | 2006-12-28 17:58:00 -0800 | [diff] [blame] | 1144 | ;; |
| 1145 | *) |
| 1146 | false |
| 1147 | ;; |
| 1148 | esac |
| 1149 | } |
| 1150 | |
Thomas Rast | 342e9ef | 2012-02-17 11:25:09 +0100 | [diff] [blame] | 1151 | # stub; perf-lib overrides it |
| 1152 | test_at_end_hook_ () { |
| 1153 | : |
| 1154 | } |
| 1155 | |
Johannes Schindelin | 900721e | 2019-03-13 13:24:11 +0100 | [diff] [blame] | 1156 | test_atexit_cleanup=: |
| 1157 | test_atexit_handler () { |
| 1158 | # In a succeeding test script 'test_atexit_handler' is invoked |
| 1159 | # twice: first from 'test_done', then from 'die' in the trap on |
| 1160 | # EXIT. |
| 1161 | # This condition and resetting 'test_atexit_cleanup' below makes |
| 1162 | # sure that the registered cleanup commands are run only once. |
| 1163 | test : != "$test_atexit_cleanup" || return 0 |
| 1164 | |
| 1165 | setup_malloc_check |
| 1166 | test_eval_ "$test_atexit_cleanup" |
| 1167 | test_atexit_cleanup=: |
| 1168 | teardown_malloc_check |
| 1169 | } |
| 1170 | |
Junio C Hamano | e1970ce | 2005-05-13 22:50:32 -0700 | [diff] [blame] | 1171 | test_done () { |
Clemens Buchacher | 6e7b5aa | 2009-06-01 14:14:41 +0200 | [diff] [blame] | 1172 | GIT_EXIT_OK=t |
Sverre Rabbelier | 2d84e9f | 2008-06-08 16:04:33 +0200 | [diff] [blame] | 1173 | |
Johannes Schindelin | 900721e | 2019-03-13 13:24:11 +0100 | [diff] [blame] | 1174 | # Run the atexit commands _before_ the trash directory is |
| 1175 | # removed, so the commands can access pidfiles and socket files. |
| 1176 | test_atexit_handler |
| 1177 | |
Johannes Schindelin | 78d5e4c | 2022-05-21 22:18:46 +0000 | [diff] [blame] | 1178 | finalize_test_output |
Johannes Schindelin | 2223190 | 2019-01-29 06:19:27 -0800 | [diff] [blame] | 1179 | |
Ramsay Jones | 1c0cc75 | 2012-09-01 19:11:49 +0100 | [diff] [blame] | 1180 | if test -z "$HARNESS_ACTIVE" |
| 1181 | then |
SZEDER Gábor | 62c379b | 2019-01-05 02:08:56 +0100 | [diff] [blame] | 1182 | mkdir -p "$TEST_RESULTS_DIR" |
Ævar Arnfjörð Bjarmason | 8ef1abe | 2010-08-11 19:37:31 +0000 | [diff] [blame] | 1183 | |
SZEDER Gábor | 62c379b | 2019-01-05 02:08:56 +0100 | [diff] [blame] | 1184 | cat >"$TEST_RESULTS_BASE.counts" <<-EOF |
Mathias Lafeldt | c54e6be | 2011-04-29 14:30:30 +0200 | [diff] [blame] | 1185 | total $test_count |
| 1186 | success $test_success |
| 1187 | fixed $test_fixed |
| 1188 | broken $test_broken |
| 1189 | failed $test_failure |
Fabian Stelzer | 49da404 | 2021-11-20 16:03:59 +0100 | [diff] [blame] | 1190 | missing_prereq $test_missing_prereq |
Mathias Lafeldt | c54e6be | 2011-04-29 14:30:30 +0200 | [diff] [blame] | 1191 | |
| 1192 | EOF |
Ævar Arnfjörð Bjarmason | 8ef1abe | 2010-08-11 19:37:31 +0000 | [diff] [blame] | 1193 | fi |
Junio C Hamano | 41ac414 | 2008-02-01 01:50:53 -0800 | [diff] [blame] | 1194 | |
| 1195 | if test "$test_fixed" != 0 |
| 1196 | then |
Thomas Rast | 633fe50 | 2013-10-19 23:06:08 +0200 | [diff] [blame] | 1197 | say_color error "# $test_fixed known breakage(s) vanished; please update test(s)" |
Junio C Hamano | 41ac414 | 2008-02-01 01:50:53 -0800 | [diff] [blame] | 1198 | fi |
| 1199 | if test "$test_broken" != 0 |
| 1200 | then |
Thomas Rast | 633fe50 | 2013-10-19 23:06:08 +0200 | [diff] [blame] | 1201 | say_color warn "# still have $test_broken known breakage(s)" |
Adam Spiers | b73d9a2 | 2012-12-16 18:28:15 +0000 | [diff] [blame] | 1202 | fi |
| 1203 | if test "$test_broken" != 0 || test "$test_fixed" != 0 |
| 1204 | then |
| 1205 | test_remaining=$(( $test_count - $test_broken - $test_fixed )) |
| 1206 | msg="remaining $test_remaining test(s)" |
Junio C Hamano | 11d54b8 | 2008-02-03 00:23:02 -0800 | [diff] [blame] | 1207 | else |
Adam Spiers | b73d9a2 | 2012-12-16 18:28:15 +0000 | [diff] [blame] | 1208 | test_remaining=$test_count |
Junio C Hamano | 11d54b8 | 2008-02-03 00:23:02 -0800 | [diff] [blame] | 1209 | msg="$test_count test(s)" |
Junio C Hamano | 41ac414 | 2008-02-01 01:50:53 -0800 | [diff] [blame] | 1210 | fi |
Junio C Hamano | e1970ce | 2005-05-13 22:50:32 -0700 | [diff] [blame] | 1211 | case "$test_failure" in |
Junio C Hamano | 10b94e2 | 2005-12-09 17:32:18 -0800 | [diff] [blame] | 1212 | 0) |
Ramsay Jones | 1c0cc75 | 2012-09-01 19:11:49 +0100 | [diff] [blame] | 1213 | if test $test_external_has_tap -eq 0 |
| 1214 | then |
Adam Spiers | b73d9a2 | 2012-12-16 18:28:15 +0000 | [diff] [blame] | 1215 | if test $test_remaining -gt 0 |
Ramsay Jones | d87bd7c | 2012-09-01 19:26:21 +0100 | [diff] [blame] | 1216 | then |
Thomas Rast | 633fe50 | 2013-10-19 23:06:08 +0200 | [diff] [blame] | 1217 | say_color pass "# passed all $msg" |
Ramsay Jones | d87bd7c | 2012-09-01 19:26:21 +0100 | [diff] [blame] | 1218 | fi |
Junio C Hamano | c7018be | 2017-05-18 11:52:20 +0900 | [diff] [blame] | 1219 | |
| 1220 | # Maybe print SKIP message |
| 1221 | test -z "$skip_all" || skip_all="# SKIP $skip_all" |
| 1222 | case "$test_count" in |
| 1223 | 0) |
| 1224 | say "1..$test_count${skip_all:+ $skip_all}" |
| 1225 | ;; |
| 1226 | *) |
| 1227 | test -z "$skip_all" || |
| 1228 | say_color warn "$skip_all" |
| 1229 | say "1..$test_count" |
| 1230 | ;; |
| 1231 | esac |
Ævar Arnfjörð Bjarmason | d998bd4 | 2010-06-24 17:44:46 +0000 | [diff] [blame] | 1232 | fi |
Johannes Schindelin | abc5d37 | 2008-08-08 13:08:37 +0200 | [diff] [blame] | 1233 | |
Ævar Arnfjörð Bjarmason | edc2384 | 2021-05-10 16:19:00 +0200 | [diff] [blame] | 1234 | if test -z "$debug" && test -n "$remove_trash" |
Junio C Hamano | 4d0912a | 2017-04-24 23:39:47 -0700 | [diff] [blame] | 1235 | then |
Junio C Hamano | 06478da | 2017-04-23 17:15:09 -0700 | [diff] [blame] | 1236 | test -d "$TRASH_DIRECTORY" || |
Junio C Hamano | 4d0912a | 2017-04-24 23:39:47 -0700 | [diff] [blame] | 1237 | error "Tests passed but trash directory already removed before test cleanup; aborting" |
Johannes Schindelin | abc5d37 | 2008-08-08 13:08:37 +0200 | [diff] [blame] | 1238 | |
Junio C Hamano | 06478da | 2017-04-23 17:15:09 -0700 | [diff] [blame] | 1239 | cd "$TRASH_DIRECTORY/.." && |
Johannes Schindelin | 046e90d | 2019-01-29 06:19:35 -0800 | [diff] [blame] | 1240 | rm -fr "$TRASH_DIRECTORY" || { |
| 1241 | # try again in a bit |
| 1242 | sleep 5; |
| 1243 | rm -fr "$TRASH_DIRECTORY" |
| 1244 | } || |
Junio C Hamano | 4d0912a | 2017-04-24 23:39:47 -0700 | [diff] [blame] | 1245 | error "Tests passed but test cleanup failed; aborting" |
Junio C Hamano | 4d0912a | 2017-04-24 23:39:47 -0700 | [diff] [blame] | 1246 | fi |
Thomas Rast | 342e9ef | 2012-02-17 11:25:09 +0100 | [diff] [blame] | 1247 | test_at_end_hook_ |
| 1248 | |
Junio C Hamano | e1970ce | 2005-05-13 22:50:32 -0700 | [diff] [blame] | 1249 | exit 0 ;; |
| 1250 | |
| 1251 | *) |
Ramsay Jones | 1c0cc75 | 2012-09-01 19:11:49 +0100 | [diff] [blame] | 1252 | if test $test_external_has_tap -eq 0 |
| 1253 | then |
Thomas Rast | 633fe50 | 2013-10-19 23:06:08 +0200 | [diff] [blame] | 1254 | say_color error "# failed $test_failure among $msg" |
| 1255 | say "1..$test_count" |
Ævar Arnfjörð Bjarmason | d998bd4 | 2010-06-24 17:44:46 +0000 | [diff] [blame] | 1256 | fi |
Ævar Arnfjörð Bjarmason | 5099b99 | 2010-06-24 21:52:12 +0000 | [diff] [blame] | 1257 | |
Junio C Hamano | e1970ce | 2005-05-13 22:50:32 -0700 | [diff] [blame] | 1258 | exit 1 ;; |
| 1259 | |
| 1260 | esac |
| 1261 | } |
| 1262 | |
Matthew Ogilvie | e4597aa | 2009-12-02 22:14:06 -0700 | [diff] [blame] | 1263 | if test -n "$valgrind" |
Johannes Schindelin | 4e1be63 | 2009-02-04 00:25:59 +0100 | [diff] [blame] | 1264 | then |
Johannes Schindelin | 4e1be63 | 2009-02-04 00:25:59 +0100 | [diff] [blame] | 1265 | make_symlink () { |
| 1266 | test -h "$2" && |
| 1267 | test "$1" = "$(readlink "$2")" || { |
| 1268 | # be super paranoid |
| 1269 | if mkdir "$2".lock |
| 1270 | then |
| 1271 | rm -f "$2" && |
| 1272 | ln -s "$1" "$2" && |
| 1273 | rm -r "$2".lock |
| 1274 | else |
| 1275 | while test -d "$2".lock |
| 1276 | do |
| 1277 | say "Waiting for lock on $2." |
| 1278 | sleep 1 |
| 1279 | done |
| 1280 | fi |
| 1281 | } |
| 1282 | } |
| 1283 | |
| 1284 | make_valgrind_symlink () { |
Jeff King | 36bfb0e | 2011-06-17 16:36:32 -0400 | [diff] [blame] | 1285 | # handle only executables, unless they are shell libraries that |
Jonathan Nieder | 11d6214 | 2013-11-25 13:03:52 -0800 | [diff] [blame] | 1286 | # need to be in the exec-path. |
Jeff King | 36bfb0e | 2011-06-17 16:36:32 -0400 | [diff] [blame] | 1287 | test -x "$1" || |
Ævar Arnfjörð Bjarmason | 2a59a6e | 2018-08-24 15:20:11 +0000 | [diff] [blame] | 1288 | test "# " = "$(test_copy_bytes 2 <"$1")" || |
Jeff King | 36bfb0e | 2011-06-17 16:36:32 -0400 | [diff] [blame] | 1289 | return; |
Johannes Schindelin | 4e1be63 | 2009-02-04 00:25:59 +0100 | [diff] [blame] | 1290 | |
| 1291 | base=$(basename "$1") |
René Scharfe | 28fab7b | 2016-10-28 00:14:00 +0200 | [diff] [blame] | 1292 | case "$base" in |
| 1293 | test-*) |
| 1294 | symlink_target="$GIT_BUILD_DIR/t/helper/$base" |
| 1295 | ;; |
| 1296 | *) |
| 1297 | symlink_target="$GIT_BUILD_DIR/$base" |
| 1298 | ;; |
| 1299 | esac |
Johannes Schindelin | 4e1be63 | 2009-02-04 00:25:59 +0100 | [diff] [blame] | 1300 | # do not override scripts |
| 1301 | if test -x "$symlink_target" && |
| 1302 | test ! -d "$symlink_target" && |
Ævar Arnfjörð Bjarmason | 2a59a6e | 2018-08-24 15:20:11 +0000 | [diff] [blame] | 1303 | test "#!" != "$(test_copy_bytes 2 <"$symlink_target")" |
Johannes Schindelin | 4e1be63 | 2009-02-04 00:25:59 +0100 | [diff] [blame] | 1304 | then |
| 1305 | symlink_target=../valgrind.sh |
| 1306 | fi |
Johannes Schindelin | efd92ff | 2009-02-04 00:26:08 +0100 | [diff] [blame] | 1307 | case "$base" in |
| 1308 | *.sh|*.perl) |
| 1309 | symlink_target=../unprocessed-script |
| 1310 | esac |
Johannes Schindelin | 4e1be63 | 2009-02-04 00:25:59 +0100 | [diff] [blame] | 1311 | # create the link, or replace it if it is out of date |
| 1312 | make_symlink "$symlink_target" "$GIT_VALGRIND/bin/$base" || exit |
| 1313 | } |
| 1314 | |
Thomas Rast | 26a0730 | 2013-10-19 23:06:07 +0200 | [diff] [blame] | 1315 | # override all git executables in TEST_DIRECTORY/.. |
| 1316 | GIT_VALGRIND=$TEST_DIRECTORY/valgrind |
| 1317 | mkdir -p "$GIT_VALGRIND"/bin |
Johannes Schindelin | 503e224 | 2016-07-11 13:45:08 +0200 | [diff] [blame] | 1318 | for file in $GIT_BUILD_DIR/git* $GIT_BUILD_DIR/t/helper/test-* |
Thomas Rast | 26a0730 | 2013-10-19 23:06:07 +0200 | [diff] [blame] | 1319 | do |
| 1320 | make_valgrind_symlink $file |
| 1321 | done |
| 1322 | # special-case the mergetools loadables |
| 1323 | make_symlink "$GIT_BUILD_DIR"/mergetools "$GIT_VALGRIND/bin/mergetools" |
| 1324 | OLDIFS=$IFS |
| 1325 | IFS=: |
| 1326 | for path in $PATH |
| 1327 | do |
| 1328 | ls "$path"/git-* 2> /dev/null | |
| 1329 | while read file |
Johannes Schindelin | efd92ff | 2009-02-04 00:26:08 +0100 | [diff] [blame] | 1330 | do |
Thomas Rast | 26a0730 | 2013-10-19 23:06:07 +0200 | [diff] [blame] | 1331 | make_valgrind_symlink "$file" |
Johannes Schindelin | efd92ff | 2009-02-04 00:26:08 +0100 | [diff] [blame] | 1332 | done |
Thomas Rast | 26a0730 | 2013-10-19 23:06:07 +0200 | [diff] [blame] | 1333 | done |
| 1334 | IFS=$OLDIFS |
Johannes Schindelin | 4e1be63 | 2009-02-04 00:25:59 +0100 | [diff] [blame] | 1335 | PATH=$GIT_VALGRIND/bin:$PATH |
| 1336 | GIT_EXEC_PATH=$GIT_VALGRIND/bin |
| 1337 | export GIT_VALGRIND |
Thomas Rast | 952af35 | 2013-03-31 10:00:16 +0200 | [diff] [blame] | 1338 | GIT_VALGRIND_MODE="$valgrind" |
| 1339 | export GIT_VALGRIND_MODE |
Thomas Rast | 5dfc368 | 2013-06-23 20:12:57 +0200 | [diff] [blame] | 1340 | GIT_VALGRIND_ENABLED=t |
Thomas Rast | 26a0730 | 2013-10-19 23:06:07 +0200 | [diff] [blame] | 1341 | test -n "$valgrind_only" && GIT_VALGRIND_ENABLED= |
Thomas Rast | 5dfc368 | 2013-06-23 20:12:57 +0200 | [diff] [blame] | 1342 | export GIT_VALGRIND_ENABLED |
Ramsay Jones | 1c0cc75 | 2012-09-01 19:11:49 +0100 | [diff] [blame] | 1343 | elif test -n "$GIT_TEST_INSTALLED" |
| 1344 | then |
Matthew Ogilvie | e4597aa | 2009-12-02 22:14:06 -0700 | [diff] [blame] | 1345 | GIT_EXEC_PATH=$($GIT_TEST_INSTALLED/git --exec-path) || |
| 1346 | error "Cannot run git from $GIT_TEST_INSTALLED." |
Johannes Schindelin | 16df35c | 2018-11-12 05:48:33 -0800 | [diff] [blame] | 1347 | PATH=$GIT_TEST_INSTALLED:$GIT_BUILD_DIR/t/helper:$PATH |
Matthew Ogilvie | e4597aa | 2009-12-02 22:14:06 -0700 | [diff] [blame] | 1348 | GIT_EXEC_PATH=${GIT_TEST_EXEC_PATH:-$GIT_EXEC_PATH} |
| 1349 | else # normal case, use ../bin-wrappers only unless $with_dashes: |
Johannes Schindelin | dd167a3 | 2019-01-29 06:19:37 -0800 | [diff] [blame] | 1350 | if test -n "$no_bin_wrappers" |
Ramsay Jones | 1c0cc75 | 2012-09-01 19:11:49 +0100 | [diff] [blame] | 1351 | then |
Matthew Ogilvie | e4597aa | 2009-12-02 22:14:06 -0700 | [diff] [blame] | 1352 | with_dashes=t |
Johannes Schindelin | dd167a3 | 2019-01-29 06:19:37 -0800 | [diff] [blame] | 1353 | else |
| 1354 | git_bin_dir="$GIT_BUILD_DIR/bin-wrappers" |
| 1355 | if ! test -x "$git_bin_dir/git" |
| 1356 | then |
| 1357 | if test -z "$with_dashes" |
| 1358 | then |
| 1359 | say "$git_bin_dir/git is not executable; using GIT_EXEC_PATH" |
| 1360 | fi |
| 1361 | with_dashes=t |
| 1362 | fi |
| 1363 | PATH="$git_bin_dir:$PATH" |
Matthew Ogilvie | e4597aa | 2009-12-02 22:14:06 -0700 | [diff] [blame] | 1364 | fi |
Ævar Arnfjörð Bjarmason | 6cec5c6 | 2010-08-19 16:08:10 +0000 | [diff] [blame] | 1365 | GIT_EXEC_PATH=$GIT_BUILD_DIR |
Ramsay Jones | 1c0cc75 | 2012-09-01 19:11:49 +0100 | [diff] [blame] | 1366 | if test -n "$with_dashes" |
| 1367 | then |
Johannes Schindelin | ca7312d | 2019-01-29 06:19:35 -0800 | [diff] [blame] | 1368 | PATH="$GIT_BUILD_DIR:$GIT_BUILD_DIR/t/helper:$PATH" |
Matthew Ogilvie | e4597aa | 2009-12-02 22:14:06 -0700 | [diff] [blame] | 1369 | fi |
Johannes Schindelin | 4e1be63 | 2009-02-04 00:25:59 +0100 | [diff] [blame] | 1370 | fi |
Ævar Arnfjörð Bjarmason | 6cec5c6 | 2010-08-19 16:08:10 +0000 | [diff] [blame] | 1371 | GIT_TEMPLATE_DIR="$GIT_BUILD_DIR"/templates/blt |
Jeff King | 8bfa6bd | 2008-02-06 05:11:53 -0500 | [diff] [blame] | 1372 | GIT_CONFIG_NOSYSTEM=1 |
Jonathan Nieder | 3c995be | 2011-03-15 04:05:10 -0500 | [diff] [blame] | 1373 | GIT_ATTR_NOSYSTEM=1 |
SZEDER Gábor | 614c3d8 | 2021-08-29 11:25:36 +0200 | [diff] [blame] | 1374 | GIT_CEILING_DIRECTORIES="$TRASH_DIRECTORY/.." |
| 1375 | export PATH GIT_EXEC_PATH GIT_TEMPLATE_DIR GIT_CONFIG_NOSYSTEM GIT_ATTR_NOSYSTEM GIT_CEILING_DIRECTORIES |
Junio C Hamano | 49ccb08 | 2005-12-07 21:52:28 -0800 | [diff] [blame] | 1376 | |
Junio C Hamano | 5e87eae | 2010-06-11 09:40:25 -0700 | [diff] [blame] | 1377 | if test -z "$GIT_TEST_CMP" |
| 1378 | then |
| 1379 | if test -n "$GIT_TEST_CMP_USE_COPIED_CONTEXT" |
| 1380 | then |
| 1381 | GIT_TEST_CMP="$DIFF -c" |
| 1382 | else |
| 1383 | GIT_TEST_CMP="$DIFF -u" |
| 1384 | fi |
| 1385 | fi |
| 1386 | |
Ævar Arnfjörð Bjarmason | 20d2a30 | 2017-12-10 21:13:33 +0000 | [diff] [blame] | 1387 | GITPERLLIB="$GIT_BUILD_DIR"/perl/build/lib |
Petr Baudis | 6fcca93 | 2006-07-03 23:16:32 +0200 | [diff] [blame] | 1388 | export GITPERLLIB |
Ævar Arnfjörð Bjarmason | 6cec5c6 | 2010-08-19 16:08:10 +0000 | [diff] [blame] | 1389 | test -d "$GIT_BUILD_DIR"/templates/blt || { |
Junio C Hamano | eea4206 | 2005-12-10 20:55:32 -0800 | [diff] [blame] | 1390 | error "You haven't built things yet, have you?" |
| 1391 | } |
Junio C Hamano | e1970ce | 2005-05-13 22:50:32 -0700 | [diff] [blame] | 1392 | |
Johannes Schindelin | d609615 | 2019-01-21 07:12:19 -0800 | [diff] [blame] | 1393 | if ! test -x "$GIT_BUILD_DIR"/t/helper/test-tool$X |
Ramsay Jones | 1c0cc75 | 2012-09-01 19:11:49 +0100 | [diff] [blame] | 1394 | then |
Nguyễn Thái Ngọc Duy | 0e49649 | 2018-03-24 08:44:31 +0100 | [diff] [blame] | 1395 | echo >&2 'You need to build test-tool:' |
| 1396 | echo >&2 'Run "make t/helper/test-tool" in the source (toplevel) directory' |
Eric Wong | 56cf980 | 2007-02-24 16:59:52 -0800 | [diff] [blame] | 1397 | exit 1 |
| 1398 | fi |
| 1399 | |
Ævar Arnfjörð Bjarmason | edc2384 | 2021-05-10 16:19:00 +0200 | [diff] [blame] | 1400 | # Are we running this test at all? |
| 1401 | remove_trash= |
Johannes Sixt | d5d9de1 | 2009-02-05 20:59:27 +0100 | [diff] [blame] | 1402 | this_test=${0##*/} |
| 1403 | this_test=${this_test%%-*} |
Jeff King | 560bf51 | 2021-06-16 06:23:07 -0400 | [diff] [blame] | 1404 | if match_pattern_list "$this_test" "$GIT_SKIP_TESTS" |
Thomas Rast | e6a6ddc | 2013-06-18 14:25:58 +0200 | [diff] [blame] | 1405 | then |
| 1406 | say_color info >&3 "skipping test $this_test altogether" |
| 1407 | skip_all="skip all tests in $this_test" |
| 1408 | test_done |
| 1409 | fi |
Johannes Sixt | f17e9fb | 2009-03-11 21:17:26 +0100 | [diff] [blame] | 1410 | |
Ævar Arnfjörð Bjarmason | 956d2e4 | 2021-09-23 11:20:46 +0200 | [diff] [blame] | 1411 | # skip non-whitelisted tests when compiled with SANITIZE=leak |
| 1412 | if test -n "$SANITIZE_LEAK" |
| 1413 | then |
| 1414 | if test_bool_env GIT_TEST_PASSING_SANITIZE_LEAK false |
| 1415 | then |
| 1416 | # We need to see it in "git env--helper" (via |
| 1417 | # test_bool_env) |
| 1418 | export TEST_PASSES_SANITIZE_LEAK |
| 1419 | |
| 1420 | if ! test_bool_env TEST_PASSES_SANITIZE_LEAK false |
| 1421 | then |
| 1422 | skip_all="skipping $this_test under GIT_TEST_PASSING_SANITIZE_LEAK=true" |
| 1423 | test_done |
| 1424 | fi |
| 1425 | fi |
| 1426 | elif test_bool_env GIT_TEST_PASSING_SANITIZE_LEAK false |
| 1427 | then |
Ævar Arnfjörð Bjarmason | 234383c | 2021-10-14 02:47:29 +0200 | [diff] [blame] | 1428 | BAIL_OUT "GIT_TEST_PASSING_SANITIZE_LEAK=true has no effect except when compiled with SANITIZE=leak" |
Ævar Arnfjörð Bjarmason | 956d2e4 | 2021-09-23 11:20:46 +0200 | [diff] [blame] | 1429 | fi |
| 1430 | |
Ævar Arnfjörð Bjarmason | edc2384 | 2021-05-10 16:19:00 +0200 | [diff] [blame] | 1431 | # Last-minute variable setup |
Philippe Blain | add5240 | 2021-09-06 04:38:59 +0000 | [diff] [blame] | 1432 | USER_HOME="$HOME" |
Ævar Arnfjörð Bjarmason | edc2384 | 2021-05-10 16:19:00 +0200 | [diff] [blame] | 1433 | HOME="$TRASH_DIRECTORY" |
| 1434 | GNUPGHOME="$HOME/gnupg-home-not-used" |
Philippe Blain | add5240 | 2021-09-06 04:38:59 +0000 | [diff] [blame] | 1435 | export HOME GNUPGHOME USER_HOME |
Ævar Arnfjörð Bjarmason | edc2384 | 2021-05-10 16:19:00 +0200 | [diff] [blame] | 1436 | |
Ævar Arnfjörð Bjarmason | 5d22e18 | 2021-10-11 03:41:59 +0200 | [diff] [blame] | 1437 | # "rm -rf" existing trash directory, even if a previous run left it |
| 1438 | # with bad permissions. |
| 1439 | remove_trash_directory () { |
| 1440 | dir="$1" |
| 1441 | if ! rm -rf "$dir" 2>/dev/null |
| 1442 | then |
| 1443 | chmod -R u+rwx "$dir" |
| 1444 | rm -rf "$dir" |
| 1445 | fi |
| 1446 | ! test -d "$dir" |
| 1447 | } |
| 1448 | |
Junio C Hamano | e1970ce | 2005-05-13 22:50:32 -0700 | [diff] [blame] | 1449 | # Test repository |
Ævar Arnfjörð Bjarmason | 5d22e18 | 2021-10-11 03:41:59 +0200 | [diff] [blame] | 1450 | remove_trash_directory "$TRASH_DIRECTORY" || { |
Clemens Buchacher | 6e7b5aa | 2009-06-01 14:14:41 +0200 | [diff] [blame] | 1451 | GIT_EXIT_OK=t |
Junio C Hamano | 8d14ac9 | 2008-03-18 21:58:01 -0700 | [diff] [blame] | 1452 | echo >&5 "FATAL: Cannot prepare test area" |
| 1453 | exit 1 |
| 1454 | } |
| 1455 | |
Ævar Arnfjörð Bjarmason | edc2384 | 2021-05-10 16:19:00 +0200 | [diff] [blame] | 1456 | remove_trash=t |
Ramsay Jones | 1c0cc75 | 2012-09-01 19:11:49 +0100 | [diff] [blame] | 1457 | if test -z "$TEST_NO_CREATE_REPO" |
| 1458 | then |
Ævar Arnfjörð Bjarmason | f0d4d39 | 2021-05-10 16:19:10 +0200 | [diff] [blame] | 1459 | git init "$TRASH_DIRECTORY" >&3 2>&4 || |
| 1460 | error "cannot run git init" |
Thomas Rast | 342e9ef | 2012-02-17 11:25:09 +0100 | [diff] [blame] | 1461 | else |
John Keeping | 38b074d | 2013-04-14 17:34:56 +0100 | [diff] [blame] | 1462 | mkdir -p "$TRASH_DIRECTORY" |
Thomas Rast | 342e9ef | 2012-02-17 11:25:09 +0100 | [diff] [blame] | 1463 | fi |
Johannes Schindelin | 2223190 | 2019-01-29 06:19:27 -0800 | [diff] [blame] | 1464 | |
Lea Wiemann | 1bd9c64 | 2008-05-31 23:11:21 +0200 | [diff] [blame] | 1465 | # Use -P to resolve symlinks in our working directory so that the cwd |
| 1466 | # in subprocesses like git equals our $PWD (for pathname comparisons). |
John Keeping | 38b074d | 2013-04-14 17:34:56 +0100 | [diff] [blame] | 1467 | cd -P "$TRASH_DIRECTORY" || exit 1 |
Junio C Hamano | 04ece59 | 2006-12-28 17:58:00 -0800 | [diff] [blame] | 1468 | |
Johannes Schindelin | 78d5e4c | 2022-05-21 22:18:46 +0000 | [diff] [blame] | 1469 | start_test_output "$0" |
Johannes Schindelin | 2223190 | 2019-01-29 06:19:27 -0800 | [diff] [blame] | 1470 | |
brian m. carlson | 192b517 | 2020-02-22 20:17:31 +0000 | [diff] [blame] | 1471 | # Convenience |
Ævar Arnfjörð Bjarmason | 7050791 | 2021-09-11 13:17:51 +0200 | [diff] [blame] | 1472 | # A regexp to match 5 and 35 hexdigits |
brian m. carlson | 192b517 | 2020-02-22 20:17:31 +0000 | [diff] [blame] | 1473 | _x05='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]' |
| 1474 | _x35="$_x05$_x05$_x05$_x05$_x05$_x05$_x05" |
brian m. carlson | 192b517 | 2020-02-22 20:17:31 +0000 | [diff] [blame] | 1475 | |
| 1476 | test_oid_init |
| 1477 | |
| 1478 | ZERO_OID=$(test_oid zero) |
| 1479 | OID_REGEX=$(echo $ZERO_OID | sed -e 's/0/[0-9a-f]/g') |
brian m. carlson | a114296 | 2020-05-13 00:53:41 +0000 | [diff] [blame] | 1480 | OIDPATH_REGEX=$(test_oid_to_path $ZERO_OID | sed -e 's/0/[0-9a-f]/g') |
brian m. carlson | 192b517 | 2020-02-22 20:17:31 +0000 | [diff] [blame] | 1481 | EMPTY_TREE=$(test_oid empty_tree) |
| 1482 | EMPTY_BLOB=$(test_oid empty_blob) |
brian m. carlson | 192b517 | 2020-02-22 20:17:31 +0000 | [diff] [blame] | 1483 | |
Junio C Hamano | 11f470a | 2019-02-09 10:25:26 -0800 | [diff] [blame] | 1484 | # Provide an implementation of the 'yes' utility; the upper bound |
| 1485 | # limit is there to help Windows that cannot stop this loop from |
| 1486 | # wasting cycles when the downstream stops reading, so do not be |
| 1487 | # tempted to turn it into an infinite loop. cf. 6129c930 ("test-lib: |
| 1488 | # limit the output of the yes utility", 2016-02-02) |
Brandon Casey | 8648732 | 2009-08-28 17:32:41 -0500 | [diff] [blame] | 1489 | yes () { |
| 1490 | if test $# = 0 |
| 1491 | then |
| 1492 | y=y |
| 1493 | else |
| 1494 | y="$*" |
| 1495 | fi |
| 1496 | |
Johannes Schindelin | 6129c93 | 2016-02-02 19:15:53 +0100 | [diff] [blame] | 1497 | i=0 |
| 1498 | while test $i -lt 99 |
Brandon Casey | 8648732 | 2009-08-28 17:32:41 -0500 | [diff] [blame] | 1499 | do |
Johannes Schindelin | 6129c93 | 2016-02-02 19:15:53 +0100 | [diff] [blame] | 1500 | echo "$y" |
| 1501 | i=$(($i+1)) |
Brandon Casey | 8648732 | 2009-08-28 17:32:41 -0500 | [diff] [blame] | 1502 | done |
| 1503 | } |
| 1504 | |
Ævar Arnfjörð Bjarmason | c740039 | 2019-06-21 12:18:12 +0200 | [diff] [blame] | 1505 | # The GIT_TEST_FAIL_PREREQS code hooks into test_set_prereq(), and |
| 1506 | # thus needs to be set up really early, and set an internal variable |
| 1507 | # for convenience so the hot test_set_prereq() codepath doesn't need |
SZEDER Gábor | 43a2afe | 2019-11-22 14:14:36 +0100 | [diff] [blame] | 1508 | # to call "git env--helper" (via test_bool_env). Only do that work |
| 1509 | # if needed by seeing if GIT_TEST_FAIL_PREREQS is set at all. |
Ævar Arnfjörð Bjarmason | c740039 | 2019-06-21 12:18:12 +0200 | [diff] [blame] | 1510 | GIT_TEST_FAIL_PREREQS_INTERNAL= |
| 1511 | if test -n "$GIT_TEST_FAIL_PREREQS" |
| 1512 | then |
SZEDER Gábor | 43a2afe | 2019-11-22 14:14:36 +0100 | [diff] [blame] | 1513 | if test_bool_env GIT_TEST_FAIL_PREREQS false |
Ævar Arnfjörð Bjarmason | c740039 | 2019-06-21 12:18:12 +0200 | [diff] [blame] | 1514 | then |
| 1515 | GIT_TEST_FAIL_PREREQS_INTERNAL=true |
| 1516 | test_set_prereq FAIL_PREREQS |
| 1517 | fi |
| 1518 | else |
| 1519 | test_lazy_prereq FAIL_PREREQS ' |
SZEDER Gábor | 43a2afe | 2019-11-22 14:14:36 +0100 | [diff] [blame] | 1520 | test_bool_env GIT_TEST_FAIL_PREREQS false |
Ævar Arnfjörð Bjarmason | c740039 | 2019-06-21 12:18:12 +0200 | [diff] [blame] | 1521 | ' |
| 1522 | fi |
| 1523 | |
Ed Maste | 7187c7b | 2019-11-27 17:15:07 +0000 | [diff] [blame] | 1524 | # Fix some commands on Windows, and other OS-specific things |
Johannes Schindelin | d98b2c5 | 2016-07-21 18:02:54 +0200 | [diff] [blame] | 1525 | uname_s=$(uname -s) |
| 1526 | case $uname_s in |
Johannes Sixt | f17e9fb | 2009-03-11 21:17:26 +0100 | [diff] [blame] | 1527 | *MINGW*) |
| 1528 | # Windows has its own (incompatible) sort and find |
| 1529 | sort () { |
| 1530 | /usr/bin/sort "$@" |
| 1531 | } |
| 1532 | find () { |
| 1533 | /usr/bin/find "$@" |
| 1534 | } |
Johannes Sixt | 4114156 | 2009-03-13 23:35:24 +0100 | [diff] [blame] | 1535 | # git sees Windows-style pwd |
| 1536 | pwd () { |
| 1537 | builtin pwd -W |
| 1538 | } |
Johannes Sixt | ee9fb68 | 2009-03-13 22:55:27 +0100 | [diff] [blame] | 1539 | # no POSIX permissions |
Johannes Sixt | 6fd1106 | 2009-03-13 23:00:15 +0100 | [diff] [blame] | 1540 | # backslashes in pathspec are converted to '/' |
Johannes Sixt | fb9a2be | 2009-03-25 13:21:15 +0100 | [diff] [blame] | 1541 | # exec does not inherit the PID |
Pat Thoyts | a94114a | 2010-09-12 10:37:24 +0100 | [diff] [blame] | 1542 | test_set_prereq MINGW |
Brice Lambson | 5f4e02e | 2014-08-30 23:39:07 +0200 | [diff] [blame] | 1543 | test_set_prereq NATIVE_CRLF |
Ramsay Jones | a31d066 | 2010-12-14 18:32:12 +0000 | [diff] [blame] | 1544 | test_set_prereq SED_STRIPS_CR |
Mark Levedahl | 97669ee | 2013-07-18 17:44:57 -0400 | [diff] [blame] | 1545 | test_set_prereq GREP_STRIPS_CR |
Adam Dinwoodie | bccc37f | 2021-04-29 21:11:44 +0100 | [diff] [blame] | 1546 | test_set_prereq WINDOWS |
Johannes Sixt | 4d715ac | 2013-10-26 21:17:15 +0200 | [diff] [blame] | 1547 | GIT_TEST_CMP=mingw_test_cmp |
Ramsay Jones | a31d066 | 2010-12-14 18:32:12 +0000 | [diff] [blame] | 1548 | ;; |
| 1549 | *CYGWIN*) |
| 1550 | test_set_prereq POSIXPERM |
Ramsay Jones | a31d066 | 2010-12-14 18:32:12 +0000 | [diff] [blame] | 1551 | test_set_prereq EXECKEEPSPID |
Pete Wyckoff | cfa9649 | 2013-01-26 22:11:11 -0500 | [diff] [blame] | 1552 | test_set_prereq CYGWIN |
Ramsay Jones | a31d066 | 2010-12-14 18:32:12 +0000 | [diff] [blame] | 1553 | test_set_prereq SED_STRIPS_CR |
Mark Levedahl | 97669ee | 2013-07-18 17:44:57 -0400 | [diff] [blame] | 1554 | test_set_prereq GREP_STRIPS_CR |
Adam Dinwoodie | bccc37f | 2021-04-29 21:11:44 +0100 | [diff] [blame] | 1555 | test_set_prereq WINDOWS |
Johannes Sixt | ee9fb68 | 2009-03-13 22:55:27 +0100 | [diff] [blame] | 1556 | ;; |
| 1557 | *) |
| 1558 | test_set_prereq POSIXPERM |
Johannes Sixt | 6fd1106 | 2009-03-13 23:00:15 +0100 | [diff] [blame] | 1559 | test_set_prereq BSLASHPSPEC |
Johannes Sixt | fb9a2be | 2009-03-25 13:21:15 +0100 | [diff] [blame] | 1560 | test_set_prereq EXECKEEPSPID |
Johannes Sixt | f17e9fb | 2009-03-11 21:17:26 +0100 | [diff] [blame] | 1561 | ;; |
| 1562 | esac |
Johannes Sixt | 704a314 | 2009-03-04 22:38:24 +0100 | [diff] [blame] | 1563 | |
Greg Price | ddcfc7c | 2020-05-15 22:33:38 -0700 | [diff] [blame] | 1564 | # Detect arches where a few things don't work |
| 1565 | uname_m=$(uname -m) |
| 1566 | case $uname_m in |
| 1567 | parisc* | hppa*) |
| 1568 | test_set_prereq HPPA |
| 1569 | ;; |
| 1570 | esac |
| 1571 | |
Han-Wen Nienhuys | c305e66 | 2021-05-31 16:56:29 +0000 | [diff] [blame] | 1572 | test_set_prereq REFFILES |
| 1573 | |
Zbigniew Jędrzejewski-Szmek | b082687 | 2012-04-27 11:25:25 +0200 | [diff] [blame] | 1574 | ( COLUMNS=1 && test $COLUMNS = 1 ) && test_set_prereq COLUMNS_CAN_BE_1 |
Ævar Arnfjörð Bjarmason | 7596fe9 | 2022-06-15 12:36:32 +0200 | [diff] [blame] | 1575 | test -z "$NO_CURL" && test_set_prereq LIBCURL |
Jeff King | 1b19ccd | 2009-04-03 15:33:59 -0400 | [diff] [blame] | 1576 | test -z "$NO_PERL" && test_set_prereq PERL |
Ævar Arnfjörð Bjarmason | 68c7d27 | 2017-05-25 19:45:31 +0000 | [diff] [blame] | 1577 | test -z "$NO_PTHREADS" && test_set_prereq PTHREADS |
Johan Herland | d4e1b47 | 2009-11-18 02:42:31 +0100 | [diff] [blame] | 1578 | test -z "$NO_PYTHON" && test_set_prereq PYTHON |
Ævar Arnfjörð Bjarmason | 7599730 | 2021-01-24 02:58:33 +0100 | [diff] [blame] | 1579 | test -n "$USE_LIBPCRE2" && test_set_prereq PCRE |
Ævar Arnfjörð Bjarmason | ce9a257 | 2017-11-23 14:16:57 +0000 | [diff] [blame] | 1580 | test -n "$USE_LIBPCRE2" && test_set_prereq LIBPCRE2 |
Ævar Arnfjörð Bjarmason | 5e9637c | 2011-11-18 00:14:42 +0100 | [diff] [blame] | 1581 | test -z "$NO_GETTEXT" && test_set_prereq GETTEXT |
Ævar Arnfjörð Bjarmason | 2cdc292 | 2021-09-23 11:20:45 +0200 | [diff] [blame] | 1582 | test -n "$SANITIZE_LEAK" && test_set_prereq SANITIZE_LEAK |
Ævar Arnfjörð Bjarmason | 58407e0 | 2022-05-12 15:32:15 -0700 | [diff] [blame] | 1583 | test -n "$GIT_VALGRIND_ENABLED" && test_set_prereq VALGRIND |
Jeff King | 1b19ccd | 2009-04-03 15:33:59 -0400 | [diff] [blame] | 1584 | |
Nguyễn Thái Ngọc Duy | 4592e60 | 2018-08-18 16:41:28 +0200 | [diff] [blame] | 1585 | if test -z "$GIT_TEST_CHECK_CACHE_TREE" |
| 1586 | then |
| 1587 | GIT_TEST_CHECK_CACHE_TREE=true |
| 1588 | export GIT_TEST_CHECK_CACHE_TREE |
| 1589 | fi |
| 1590 | |
Adam Spiers | 2007327 | 2013-04-11 03:07:04 +0100 | [diff] [blame] | 1591 | test_lazy_prereq PIPE ' |
| 1592 | # test whether the filesystem supports FIFOs |
Ramsay Jones | 7b7bea2 | 2017-09-17 23:56:00 +0100 | [diff] [blame] | 1593 | test_have_prereq !MINGW,!CYGWIN && |
| 1594 | rm -f testfifo && mkfifo testfifo |
Adam Spiers | 2007327 | 2013-04-11 03:07:04 +0100 | [diff] [blame] | 1595 | ' |
| 1596 | |
Junio C Hamano | 04083f2 | 2012-07-26 15:50:45 -0700 | [diff] [blame] | 1597 | test_lazy_prereq SYMLINKS ' |
| 1598 | # test whether the filesystem supports symbolic links |
| 1599 | ln -s x y && test -h y |
| 1600 | ' |
Ævar Arnfjörð Bjarmason | c91cfd1 | 2010-08-06 22:09:09 +0000 | [diff] [blame] | 1601 | |
Thomas Bétous | 3e7d488 | 2021-08-02 21:07:30 +0000 | [diff] [blame] | 1602 | test_lazy_prereq SYMLINKS_WINDOWS ' |
| 1603 | # test whether symbolic links are enabled on Windows |
| 1604 | test_have_prereq MINGW && |
| 1605 | cmd //c "mklink y x" &> /dev/null && test -h y |
| 1606 | ' |
| 1607 | |
Jonathan Nieder | b018c73 | 2013-11-25 13:02:16 -0800 | [diff] [blame] | 1608 | test_lazy_prereq FILEMODE ' |
| 1609 | test "$(git config --bool core.filemode)" = true |
| 1610 | ' |
| 1611 | |
Michael J Gruber | ac39aa6 | 2012-07-26 15:39:53 +0200 | [diff] [blame] | 1612 | test_lazy_prereq CASE_INSENSITIVE_FS ' |
| 1613 | echo good >CamelCase && |
| 1614 | echo bad >camelcase && |
| 1615 | test "$(cat CamelCase)" != good |
| 1616 | ' |
| 1617 | |
William Chargin | 6ec6330 | 2018-08-06 11:35:08 -0700 | [diff] [blame] | 1618 | test_lazy_prereq FUNNYNAMES ' |
| 1619 | test_have_prereq !MINGW && |
| 1620 | touch -- \ |
| 1621 | "FUNNYNAMES tab embedded" \ |
| 1622 | "FUNNYNAMES \"quote embedded\"" \ |
| 1623 | "FUNNYNAMES newline |
| 1624 | embedded" 2>/dev/null && |
| 1625 | rm -- \ |
| 1626 | "FUNNYNAMES tab embedded" \ |
| 1627 | "FUNNYNAMES \"quote embedded\"" \ |
| 1628 | "FUNNYNAMES newline |
| 1629 | embedded" 2>/dev/null |
| 1630 | ' |
| 1631 | |
Michael J Gruber | 5b0b5dd | 2012-07-26 15:39:56 +0200 | [diff] [blame] | 1632 | test_lazy_prereq UTF8_NFD_TO_NFC ' |
| 1633 | # check whether FS converts nfd unicode to nfc |
| 1634 | auml=$(printf "\303\244") |
| 1635 | aumlcdiar=$(printf "\141\314\210") |
| 1636 | >"$auml" && |
Torsten Bögershausen | 742ae10 | 2018-04-30 08:35:19 +0200 | [diff] [blame] | 1637 | test -f "$aumlcdiar" |
Michael J Gruber | 5b0b5dd | 2012-07-26 15:39:56 +0200 | [diff] [blame] | 1638 | ' |
| 1639 | |
Jeff King | 09feffb | 2012-11-14 16:33:40 -0800 | [diff] [blame] | 1640 | test_lazy_prereq AUTOIDENT ' |
| 1641 | sane_unset GIT_AUTHOR_NAME && |
| 1642 | sane_unset GIT_AUTHOR_EMAIL && |
| 1643 | git var GIT_AUTHOR_IDENT |
| 1644 | ' |
| 1645 | |
Junio C Hamano | 6219bb2 | 2014-06-09 12:23:30 -0700 | [diff] [blame] | 1646 | test_lazy_prereq EXPENSIVE ' |
| 1647 | test -n "$GIT_TEST_LONG" |
| 1648 | ' |
| 1649 | |
Ævar Arnfjörð Bjarmason | 5b1fe6e | 2018-01-30 21:21:23 +0000 | [diff] [blame] | 1650 | test_lazy_prereq EXPENSIVE_ON_WINDOWS ' |
| 1651 | test_have_prereq EXPENSIVE || test_have_prereq !MINGW,!CYGWIN |
| 1652 | ' |
| 1653 | |
Junio C Hamano | e1ecd9e | 2014-06-09 13:54:25 -0700 | [diff] [blame] | 1654 | test_lazy_prereq USR_BIN_TIME ' |
| 1655 | test -x /usr/bin/time |
| 1656 | ' |
| 1657 | |
Jeff King | 1767c51 | 2015-01-16 04:16:49 -0500 | [diff] [blame] | 1658 | test_lazy_prereq NOT_ROOT ' |
| 1659 | uid=$(id -u) && |
| 1660 | test "$uid" != 0 |
| 1661 | ' |
| 1662 | |
Jonathan Tan | 63b747c | 2016-09-09 10:36:28 -0700 | [diff] [blame] | 1663 | test_lazy_prereq JGIT ' |
Todd Zullinger | abd0f28 | 2019-05-14 21:36:33 -0400 | [diff] [blame] | 1664 | jgit --version |
Jonathan Tan | 63b747c | 2016-09-09 10:36:28 -0700 | [diff] [blame] | 1665 | ' |
| 1666 | |
Junio C Hamano | 719c3da | 2016-01-19 14:09:37 -0800 | [diff] [blame] | 1667 | # SANITY is about "can you correctly predict what the filesystem would |
| 1668 | # do by only looking at the permission bits of the files and |
| 1669 | # directories?" A typical example of !SANITY is running the test |
| 1670 | # suite as root, where a test may expect "chmod -r file && cat file" |
| 1671 | # to fail because file is supposed to be unreadable after a successful |
| 1672 | # chmod. In an environment (i.e. combination of what filesystem is |
| 1673 | # being used and who is running the tests) that lacks SANITY, you may |
| 1674 | # be able to delete or create a file when the containing directory |
| 1675 | # doesn't have write permissions, or access a file even if the |
| 1676 | # containing directory doesn't have read or execute permissions. |
| 1677 | |
Torsten Bögershausen | f400e51 | 2015-01-27 16:39:01 +0100 | [diff] [blame] | 1678 | test_lazy_prereq SANITY ' |
| 1679 | mkdir SANETESTD.1 SANETESTD.2 && |
| 1680 | |
| 1681 | chmod +w SANETESTD.1 SANETESTD.2 && |
| 1682 | >SANETESTD.1/x 2>SANETESTD.2/x && |
| 1683 | chmod -w SANETESTD.1 && |
Junio C Hamano | 719c3da | 2016-01-19 14:09:37 -0800 | [diff] [blame] | 1684 | chmod -r SANETESTD.1/x && |
Torsten Bögershausen | f400e51 | 2015-01-27 16:39:01 +0100 | [diff] [blame] | 1685 | chmod -rx SANETESTD.2 || |
SZEDER Gábor | 165293a | 2018-11-19 14:13:26 +0100 | [diff] [blame] | 1686 | BUG "cannot prepare SANETESTD" |
Torsten Bögershausen | f400e51 | 2015-01-27 16:39:01 +0100 | [diff] [blame] | 1687 | |
Junio C Hamano | 719c3da | 2016-01-19 14:09:37 -0800 | [diff] [blame] | 1688 | ! test -r SANETESTD.1/x && |
Torsten Bögershausen | f400e51 | 2015-01-27 16:39:01 +0100 | [diff] [blame] | 1689 | ! rm SANETESTD.1/x && ! test -f SANETESTD.2/x |
| 1690 | status=$? |
| 1691 | |
| 1692 | chmod +rwx SANETESTD.1 SANETESTD.2 && |
| 1693 | rm -rf SANETESTD.1 SANETESTD.2 || |
SZEDER Gábor | 165293a | 2018-11-19 14:13:26 +0100 | [diff] [blame] | 1694 | BUG "cannot clean SANETESTD" |
Torsten Bögershausen | f400e51 | 2015-01-27 16:39:01 +0100 | [diff] [blame] | 1695 | return $status |
| 1696 | ' |
Jeff King | f838ce5 | 2013-03-10 21:31:47 -0400 | [diff] [blame] | 1697 | |
Johannes Schindelin | d98b2c5 | 2016-07-21 18:02:54 +0200 | [diff] [blame] | 1698 | test FreeBSD != $uname_s || GIT_UNZIP=${GIT_UNZIP:-/usr/local/bin/unzip} |
Jeff King | f838ce5 | 2013-03-10 21:31:47 -0400 | [diff] [blame] | 1699 | GIT_UNZIP=${GIT_UNZIP:-unzip} |
| 1700 | test_lazy_prereq UNZIP ' |
| 1701 | "$GIT_UNZIP" -v |
| 1702 | test $? -ne 127 |
| 1703 | ' |
Jeff King | 9a308de | 2015-03-13 00:53:07 -0400 | [diff] [blame] | 1704 | |
| 1705 | run_with_limited_cmdline () { |
| 1706 | (ulimit -s 128 && "$@") |
| 1707 | } |
| 1708 | |
Ramsay Jones | 21dac1d | 2017-09-14 18:24:41 +0100 | [diff] [blame] | 1709 | test_lazy_prereq CMDLINE_LIMIT ' |
Greg Price | ddcfc7c | 2020-05-15 22:33:38 -0700 | [diff] [blame] | 1710 | test_have_prereq !HPPA,!MINGW,!CYGWIN && |
Ramsay Jones | 21dac1d | 2017-09-14 18:24:41 +0100 | [diff] [blame] | 1711 | run_with_limited_cmdline true |
| 1712 | ' |
Jeff King | 6b9c38e | 2016-07-11 19:54:18 -0400 | [diff] [blame] | 1713 | |
Michael J Gruber | 4db464f | 2017-09-07 16:02:20 +0200 | [diff] [blame] | 1714 | run_with_limited_stack () { |
| 1715 | (ulimit -s 128 && "$@") |
| 1716 | } |
| 1717 | |
Ramsay Jones | 21dac1d | 2017-09-14 18:24:41 +0100 | [diff] [blame] | 1718 | test_lazy_prereq ULIMIT_STACK_SIZE ' |
Greg Price | ddcfc7c | 2020-05-15 22:33:38 -0700 | [diff] [blame] | 1719 | test_have_prereq !HPPA,!MINGW,!CYGWIN && |
Ramsay Jones | 21dac1d | 2017-09-14 18:24:41 +0100 | [diff] [blame] | 1720 | run_with_limited_stack true |
| 1721 | ' |
Michael J Gruber | 4db464f | 2017-09-07 16:02:20 +0200 | [diff] [blame] | 1722 | |
Taylor Blau | b30fdb4 | 2020-04-23 15:41:06 -0600 | [diff] [blame] | 1723 | run_with_limited_open_files () { |
| 1724 | (ulimit -n 32 && "$@") |
| 1725 | } |
| 1726 | |
| 1727 | test_lazy_prereq ULIMIT_FILE_DESCRIPTORS ' |
| 1728 | test_have_prereq !MINGW,!CYGWIN && |
| 1729 | run_with_limited_open_files true |
| 1730 | ' |
| 1731 | |
Jeff King | 6b9c38e | 2016-07-11 19:54:18 -0400 | [diff] [blame] | 1732 | build_option () { |
| 1733 | git version --build-options | |
| 1734 | sed -ne "s/^$1: //p" |
| 1735 | } |
| 1736 | |
Carlo Marcelo Arenas Belón | 970fa57 | 2021-11-02 15:46:06 +0000 | [diff] [blame] | 1737 | test_lazy_prereq SIZE_T_IS_64BIT ' |
| 1738 | test 8 -eq "$(build_option sizeof-size_t)" |
| 1739 | ' |
| 1740 | |
Jeff King | 6b9c38e | 2016-07-11 19:54:18 -0400 | [diff] [blame] | 1741 | test_lazy_prereq LONG_IS_64BIT ' |
| 1742 | test 8 -le "$(build_option sizeof-long)" |
| 1743 | ' |
Johannes Schindelin | a07fb05 | 2017-04-20 22:52:13 +0200 | [diff] [blame] | 1744 | |
Nguyễn Thái Ngọc Duy | a801a7c | 2018-03-24 08:44:36 +0100 | [diff] [blame] | 1745 | test_lazy_prereq TIME_IS_64BIT 'test-tool date is64bit' |
| 1746 | test_lazy_prereq TIME_T_IS_64BIT 'test-tool date time_t-is64bit' |
Jeff King | e9184b0 | 2018-04-03 10:01:57 -0400 | [diff] [blame] | 1747 | |
| 1748 | test_lazy_prereq CURL ' |
| 1749 | curl --version |
| 1750 | ' |
brian m. carlson | d16ab63 | 2018-05-13 02:24:11 +0000 | [diff] [blame] | 1751 | |
| 1752 | # SHA1 is a test if the hash algorithm in use is SHA-1. This is both for tests |
| 1753 | # which will not work with other hash algorithms and tests that work but don't |
| 1754 | # test anything meaningful (e.g. special values which cause short collisions). |
| 1755 | test_lazy_prereq SHA1 ' |
brian m. carlson | c49fe07 | 2020-07-29 23:14:25 +0000 | [diff] [blame] | 1756 | case "$GIT_DEFAULT_HASH" in |
| 1757 | sha1) true ;; |
| 1758 | "") test $(git hash-object /dev/null) = e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 ;; |
| 1759 | *) false ;; |
| 1760 | esac |
brian m. carlson | d16ab63 | 2018-05-13 02:24:11 +0000 | [diff] [blame] | 1761 | ' |
Johannes Schindelin | 11aad46 | 2018-10-31 13:02:02 -0700 | [diff] [blame] | 1762 | |
Ævar Arnfjörð Bjarmason | 7ccbea5 | 2022-06-14 17:40:07 +0200 | [diff] [blame] | 1763 | test_lazy_prereq ADD_I_USE_BUILTIN ' |
| 1764 | test_bool_env GIT_TEST_ADD_I_USE_BUILTIN true |
| 1765 | ' |
| 1766 | |
Derrick Stolee | 2fec604 | 2020-09-11 17:49:18 +0000 | [diff] [blame] | 1767 | # Ensure that no test accidentally triggers a Git command |
Derrick Stolee | 31345d5 | 2020-11-24 04:16:42 +0000 | [diff] [blame] | 1768 | # that runs the actual maintenance scheduler, affecting a user's |
| 1769 | # system permanently. |
| 1770 | # Tests that verify the scheduler integration must set this locally |
Derrick Stolee | 2fec604 | 2020-09-11 17:49:18 +0000 | [diff] [blame] | 1771 | # to avoid errors. |
Derrick Stolee | 31345d5 | 2020-11-24 04:16:42 +0000 | [diff] [blame] | 1772 | GIT_TEST_MAINT_SCHEDULER="none:exit 1" |
Jeff Hostetler | dd77cf6 | 2022-03-25 18:03:02 +0000 | [diff] [blame] | 1773 | |
| 1774 | # Does this platform support `git fsmonitor--daemon` |
| 1775 | # |
| 1776 | test_lazy_prereq FSMONITOR_DAEMON ' |
| 1777 | git version --build-options >output && |
| 1778 | grep "feature: fsmonitor--daemon" output |
| 1779 | ' |