blob: 8cabb4d10f9aaf9e500cd27b9be91fe9719d62a9 [file] [log] [blame]
Jonathan Niederc74c7202013-11-25 13:03:06 -08001# Test framework for git. See t/README for usage.
Junio C Hamanoe1970ce2005-05-13 22:50:32 -07002#
3# Copyright (c) 2005 Junio C Hamano
4#
Michal Sojka64b90322010-04-16 15:53:59 +02005# 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 Hamanoe1970ce2005-05-13 22:50:32 -070017
Junio C Hamano3c8f12c2012-06-24 22:01:35 -070018# Test the binaries we have just built. The tests are kept in
19# t/ subdirectory and are run in 'trash directory' subdirectory.
20if test -z "$TEST_DIRECTORY"
21then
Felipe Contreras85176d72013-11-17 23:12:43 -050022 # 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ð Bjarmason9dbf20e2022-02-27 11:25:11 +010024 TEST_DIRECTORY=$(pwd)
25else
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 Contreras85176d72013-11-17 23:12:43 -050036 TEST_DIRECTORY=$(cd "$TEST_DIRECTORY" && pwd) || exit 1
Junio C Hamano3c8f12c2012-06-24 22:01:35 -070037fi
38if test -z "$TEST_OUTPUT_DIRECTORY"
39then
40 # Similarly, override this to store the test-results subdir
41 # elsewhere
42 TEST_OUTPUT_DIRECTORY=$TEST_DIRECTORY
43fi
Ævar Arnfjörð Bjarmasonb9638d72022-02-27 11:25:12 +010044GIT_BUILD_DIR="${TEST_DIRECTORY%/t}"
45if test "$TEST_DIRECTORY" = "$GIT_BUILD_DIR"
Ævar Arnfjörð Bjarmason9dbf20e2022-02-27 11:25:11 +010046then
47 echo "PANIC: Running in a $TEST_DIRECTORY that doesn't end in '/t'?" >&2
48 exit 1
49fi
Junio C Hamano3c8f12c2012-06-24 22:01:35 -070050
Ævar Arnfjörð Bjarmason66c1a562022-02-27 11:25:10 +010051# 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
59prepend_var () {
Ævar Arnfjörð Bjarmason361fa322022-06-30 12:18:35 +020060 eval "$1=\"$3\${$1:+${3:+$2}\$$1}\""
Ævar Arnfjörð Bjarmason66c1a562022-02-27 11:25:10 +010061}
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.
66prepend_var GIT_SAN_OPTIONS : abort_on_error=1
Ævar Arnfjörð Bjarmason361fa322022-06-30 12:18:35 +020067prepend_var GIT_SAN_OPTIONS : strip_path_prefix="$GIT_BUILD_DIR/"
Ævar Arnfjörð Bjarmason66c1a562022-02-27 11:25:10 +010068
Jeff Kingd0cc5792017-07-10 09:24:35 -040069# 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ð Bjarmason66c1a562022-02-27 11:25:10 +010074prepend_var ASAN_OPTIONS : $GIT_SAN_OPTIONS
75prepend_var ASAN_OPTIONS : detect_leaks=0
Jeff Kingd0cc5792017-07-10 09:24:35 -040076export ASAN_OPTIONS
77
Ævar Arnfjörð Bjarmason66c1a562022-02-27 11:25:10 +010078prepend_var LSAN_OPTIONS : $GIT_SAN_OPTIONS
Ævar Arnfjörð Bjarmason71f26792022-02-27 11:25:13 +010079prepend_var LSAN_OPTIONS : fast_unwind_on_malloc=0
Jeff King85b81b32017-09-05 09:04:04 -040080export LSAN_OPTIONS
81
Johannes Schindelin8abfdf42018-11-14 08:32:11 -080082if test ! -f "$GIT_BUILD_DIR"/GIT-BUILD-OPTIONS
Ramkumar Ramachandra2006f0a2012-09-17 22:36:19 +053083then
Johannes Schindelin8abfdf42018-11-14 08:32:11 -080084 echo >&2 'error: GIT-BUILD-OPTIONS missing (has Git been built?).'
Ramkumar Ramachandra2006f0a2012-09-17 22:36:19 +053085 exit 1
86fi
Junio C Hamano3c8f12c2012-06-24 22:01:35 -070087. "$GIT_BUILD_DIR"/GIT-BUILD-OPTIONS
88export PERL_PATH SHELL_PATH
89
Patrick Steinhardtade15522021-07-20 08:32:26 +020090# 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.
94if test -n "${TEST_OUTPUT_DIRECTORY_OVERRIDE}"
95then
96 TEST_OUTPUT_DIRECTORY="${TEST_OUTPUT_DIRECTORY_OVERRIDE}"
97fi
98
Johannes Schindelinb02e7d52019-04-12 02:37:24 -070099# Disallow the use of abbreviated options in the test suite by default
100if test -z "${GIT_TEST_DISALLOW_ABBREVIATED_OPTIONS}"
101then
102 GIT_TEST_DISALLOW_ABBREVIATED_OPTIONS=true
103 export GIT_TEST_DISALLOW_ABBREVIATED_OPTIONS
104fi
105
Ævar Arnfjörð Bjarmason97c8aac2021-05-10 16:19:09 +0200106# 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}
109export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
110
Junio C Hamanoc2116a12008-03-06 19:04:26 -0800111################################################################
112# It appears that people try to run tests without building...
Johannes Schindelin8abfdf42018-11-14 08:32:11 -0800113"${GIT_TEST_INSTALLED:-$GIT_BUILD_DIR}/git$X" >/dev/null
Junio C Hamanoe1970ce2005-05-13 22:50:32 -0700114if test $? != 1
115then
Johannes Schindelined306e42018-11-14 08:32:10 -0800116 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 Roskind9bdd392005-08-10 22:10:01 -0400122 exit 1
Junio C Hamanoe1970ce2005-05-13 22:50:32 -0700123fi
Junio C Hamanoc2116a12008-03-06 19:04:26 -0800124
SZEDER Gábor8cf58002019-01-05 02:08:55 +0100125store_arg_to=
Matheus Tavares78dc0882020-03-22 12:58:57 -0300126opt_required_arg=
127# $1: option string
128# $2: name of the var where the arg will be stored
129mark_option_requires_arg () {
130 if test -n "$opt_required_arg"
SZEDER Gábor8cf58002019-01-05 02:08:55 +0100131 then
Matheus Tavares78dc0882020-03-22 12:58:57 -0300132 echo "error: options that require args cannot be bundled" \
133 "together: '$opt_required_arg' and '$1'" >&2
134 exit 1
SZEDER Gábor8cf58002019-01-05 02:08:55 +0100135 fi
Matheus Tavares78dc0882020-03-22 12:58:57 -0300136 opt_required_arg=$1
137 store_arg_to=$2
138}
139
Johannes Schindelin78d5e4c2022-05-21 22:18:46 +0000140# These functions can be overridden e.g. to output JUnit XML
141start_test_output () { :; }
142start_test_case_output () { :; }
143finalize_test_case_output () { :; }
144finalize_test_output () { :; }
145
Matheus Tavares78dc0882020-03-22 12:58:57 -0300146parse_option () {
147 local opt="$1"
SZEDER Gábor8cf58002019-01-05 02:08:55 +0100148
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 Tavares78dc0882020-03-22 12:58:57 -0300157 mark_option_requires_arg "$opt" run_list
SZEDER Gábor8cf58002019-01-05 02:08:55 +0100158 ;;
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 Schindelindd167a32019-01-29 06:19:37 -0800174 --no-bin-wrappers)
175 no_bin_wrappers=t ;;
SZEDER Gábor8cf58002019-01-05 02:08:55 +0100176 --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 Schindelin22231902019-01-29 06:19:27 -0800204 --write-junit-xml)
Johannes Schindelin78d5e4c2022-05-21 22:18:46 +0000205 . "$TEST_DIRECTORY/test-lib-junit.sh"
Johannes Schindelin22231902019-01-29 06:19:27 -0800206 ;;
Johannes Schindelin0f5ae592022-05-21 22:18:51 +0000207 --github-workflow-markup)
208 . "$TEST_DIRECTORY/test-lib-github-workflow-markup.sh"
Johannes Schindelin22231902019-01-29 06:19:27 -0800209 ;;
SZEDER Gáborfb7d1e32019-01-05 02:08:59 +0100210 --stress)
211 stress=t ;;
212 --stress=*)
Johannes Schindelinf5457372019-03-03 06:44:55 -0800213 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ábor134768c2021-01-26 23:05:33 +0100219 stress_jobs=${opt#--*=}
220 case "$stress_jobs" in
SZEDER Gábor7d661e52019-02-11 20:58:03 +0100221 *[!0-9]*|0*|"")
Johannes Schindelinf5457372019-03-03 06:44:55 -0800222 echo "error: --stress-jobs=<N> requires the number of jobs to run" >&2
SZEDER Gáborfb7d1e32019-01-05 02:08:59 +0100223 exit 1
224 ;;
225 *) # Good.
226 ;;
227 esac
228 ;;
SZEDER Gábor76e27fb2019-02-08 12:50:45 +0100229 --stress-limit=*)
Johannes Schindelinde69e6f2019-03-03 06:44:54 -0800230 stress=t;
SZEDER Gábor76e27fb2019-02-08 12:50:45 +0100231 stress_limit=${opt#--*=}
232 case "$stress_limit" in
SZEDER Gábor7d661e52019-02-11 20:58:03 +0100233 *[!0-9]*|0*|"")
SZEDER Gábor76e27fb2019-02-08 12:50:45 +0100234 echo "error: --stress-limit=<N> requires the number of repetitions" >&2
235 exit 1
236 ;;
237 *) # Good.
238 ;;
239 esac
240 ;;
SZEDER Gábor8cf58002019-01-05 02:08:55 +0100241 *)
242 echo "error: unknown test option '$opt'" >&2; exit 1 ;;
243 esac
Matheus Tavares78dc0882020-03-22 12:58:57 -0300244}
SZEDER Gábor8cf58002019-01-05 02:08:55 +0100245
Matheus Tavares78dc0882020-03-22 12:58:57 -0300246# 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.
249for opt
250do
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ábor8cf58002019-01-05 02:08:55 +0100276done
277if test -n "$store_arg_to"
278then
Matheus Tavares78dc0882020-03-22 12:58:57 -0300279 echo "error: $opt_required_arg requires an argument" >&2
SZEDER Gábor8cf58002019-01-05 02:08:55 +0100280 exit 1
281fi
282
283if test -n "$valgrind_only"
284then
285 test -z "$valgrind" && valgrind=memcheck
286 test -z "$verbose" && verbose_only="$valgrind_only"
287elif test -n "$valgrind"
288then
289 test -z "$verbose_log" && verbose=t
290fi
291
SZEDER Gáborfb7d1e32019-01-05 02:08:59 +0100292if test -n "$stress"
293then
294 verbose=t
295 trace=t
296 immediate=t
297fi
298
299TEST_STRESS_JOB_SFX="${GIT_TEST_STRESS_JOB_NR:+.stress-$GIT_TEST_STRESS_JOB_NR}"
SZEDER Gábor62c379b2019-01-05 02:08:56 +0100300TEST_NAME="$(basename "$0" .sh)"
SZEDER Gáborffe1afe2019-08-05 23:04:47 +0200301TEST_NUMBER="${TEST_NAME%%-*}"
302TEST_NUMBER="${TEST_NUMBER#t}"
SZEDER Gábor62c379b2019-01-05 02:08:56 +0100303TEST_RESULTS_DIR="$TEST_OUTPUT_DIRECTORY/test-results"
SZEDER Gáborfb7d1e32019-01-05 02:08:59 +0100304TEST_RESULTS_BASE="$TEST_RESULTS_DIR/$TEST_NAME$TEST_STRESS_JOB_SFX"
305TRASH_DIRECTORY="trash directory.$TEST_NAME$TEST_STRESS_JOB_SFX"
SZEDER Gábor61f292d2019-01-05 02:08:57 +0100306test -n "$root" && TRASH_DIRECTORY="$root/$TRASH_DIRECTORY"
307case "$TRASH_DIRECTORY" in
308/*) ;; # absolute path is good
309 *) TRASH_DIRECTORY="$TEST_OUTPUT_DIRECTORY/$TRASH_DIRECTORY" ;;
310esac
SZEDER Gábor62c379b2019-01-05 02:08:56 +0100311
SZEDER Gáborfb7d1e32019-01-05 02:08:59 +0100312# If --stress was passed, run this test repeatedly in several parallel loops.
313if test "$GIT_TEST_STRESS_STARTED" = "done"
314then
315 : # Don't stress test again.
316elif test -n "$stress"
317then
SZEDER Gábor134768c2021-01-26 23:05:33 +0100318 if test -n "$stress_jobs"
SZEDER Gáborfb7d1e32019-01-05 02:08:59 +0100319 then
SZEDER Gábor134768c2021-01-26 23:05:33 +0100320 job_count=$stress_jobs
SZEDER Gáborfb7d1e32019-01-05 02:08:59 +0100321 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ábor76e27fb2019-02-08 12:50:45 +0100358 cnt=1
359 while ! test -e "$stressfail" &&
360 { test -z "$stress_limit" ||
361 test $cnt -le $stress_limit ; }
SZEDER Gáborfb7d1e32019-01-05 02:08:59 +0100362 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ábor76e27fb2019-02-08 12:50:45 +0100384 stress_exit=1
SZEDER Gáborfb7d1e32019-01-05 02:08:59 +0100385 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
397fi
398
Ramkumar Ramachandra4cde5192012-09-22 10:25:10 +0530399# 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ábor8cf58002019-01-05 02:08:55 +0100401if test "$GIT_TEST_TEE_STARTED" = "done"
402then
403 : # do not redirect again
404elif test -n "$tee"
405then
SZEDER Gábor62c379b2019-01-05 02:08:56 +0100406 mkdir -p "$TEST_RESULTS_DIR"
Jeff King452320f2016-10-21 06:48:00 -0400407
408 # Make this filename available to the sub-process in case it is using
409 # --verbose-log.
SZEDER Gábor62c379b2019-01-05 02:08:56 +0100410 GIT_TEST_TEE_OUTPUT_FILE=$TEST_RESULTS_BASE.out
Jeff King452320f2016-10-21 06:48:00 -0400411 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 King3f824e92017-12-08 05:47:22 -0500417 (GIT_TEST_TEE_STARTED=done ${TEST_SHELL_PATH} "$0" "$@" 2>&1;
SZEDER Gábor62c379b2019-01-05 02:08:56 +0100418 echo $? >"$TEST_RESULTS_BASE.exit") | tee -a "$GIT_TEST_TEE_OUTPUT_FILE"
419 test "$(cat "$TEST_RESULTS_BASE.exit")" = 0
Ramkumar Ramachandra4cde5192012-09-22 10:25:10 +0530420 exit
SZEDER Gábor8cf58002019-01-05 02:08:55 +0100421fi
422
423if test -n "$trace" && test -n "$test_untraceable"
424then
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
445fi
446if test -n "$trace" && test -z "$verbose_log"
447then
448 verbose=t
449fi
Ramkumar Ramachandra4cde5192012-09-22 10:25:10 +0530450
Felipe Contreras390b44e2021-08-05 14:48:25 -0500451# 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.
455test -n "$BASH_VERSION" && shopt -u checkwinsize 2>/dev/null
456
Junio C Hamanoe1970ce2005-05-13 22:50:32 -0700457# For repeatability, reset the environment to known value.
Richard Hansend5c1b7c2015-06-17 17:11:21 -0400458# TERM is sanitized below, after saving color control sequences.
Junio C Hamanoe1970ce2005-05-13 22:50:32 -0700459LANG=C
460LC_ALL=C
461PAGER=cat
462TZ=UTC
Ævar Arnfjörð Bjarmasonc49a1772021-06-29 13:29:36 +0200463COLUMNS=80
464export LANG LC_ALL PAGER TZ COLUMNS
Eric Wong8ff99e72006-07-11 12:01:54 -0700465EDITOR=:
Ævar Arnfjörð Bjarmason6cdccfc2018-11-08 21:15:29 +0000466
Stefano Lattarini661bfd12012-03-02 19:48:36 +0100467# 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ð Bjarmasonc49a1772021-06-29 13:29:36 +0200471unset VISUAL EMAIL LANGUAGE $("$PERL_PATH" -e '
Jonathan Nieder95a1d122011-03-15 05:10:45 -0500472 my @env = keys %ENV;
Jens Lehmann730477f2011-03-28 21:16:09 +0200473 my $ok = join("|", qw(
474 TRACE
475 DEBUG
Jens Lehmann730477f2011-03-28 21:16:09 +0200476 TEST
477 .*_TEST
478 PROVE
479 VALGRIND
René Scharfeac001282013-01-06 18:47:57 +0100480 UNZIP
Nguyễn Thái Ngọc Duyedb54082013-01-15 20:50:56 +0700481 PERF_
Jeff Kinge2a0ccc2014-05-22 05:28:50 -0400482 CURL_VERBOSE
Elia Pinto4527aa12016-09-05 10:24:42 +0000483 TRACE_CURL
Jens Lehmann730477f2011-03-28 21:16:09 +0200484 ));
485 my @vars = grep(/^GIT_/ && !/^GIT_($ok)/o, @env);
Jonathan Nieder95a1d122011-03-15 05:10:45 -0500486 print join("\n", @vars);
487')
Genki Sky7976e902018-02-15 21:46:04 -0500488unset XDG_CACHE_HOME
Jeff King5adf84e2012-07-24 07:53:05 -0400489unset XDG_CONFIG_HOME
Benoit Person8bade1e2013-07-04 22:38:55 +0200490unset GITPERLLIB
Josh Steadmon944d8082022-01-13 19:33:36 -0800491unset GIT_TRACE2_PARENT_NAME
492unset GIT_TRACE2_PARENT_SID
Prarit Bhargavad8b82172019-10-29 08:09:14 -0400493TEST_AUTHOR_LOCALNAME=author
494TEST_AUTHOR_DOMAIN=example.com
495GIT_AUTHOR_EMAIL=${TEST_AUTHOR_LOCALNAME}@${TEST_AUTHOR_DOMAIN}
Junio C Hamano29e55cd2006-02-10 19:11:23 -0800496GIT_AUTHOR_NAME='A U Thor'
Jeff Kingf2e39372020-07-09 16:42:04 -0400497GIT_AUTHOR_DATE='1112354055 +0200'
Prarit Bhargavad8b82172019-10-29 08:09:14 -0400498TEST_COMMITTER_LOCALNAME=committer
499TEST_COMMITTER_DOMAIN=example.com
500GIT_COMMITTER_EMAIL=${TEST_COMMITTER_LOCALNAME}@${TEST_COMMITTER_DOMAIN}
Junio C Hamano29e55cd2006-02-10 19:11:23 -0800501GIT_COMMITTER_NAME='C O Mitter'
Jeff Kingf2e39372020-07-09 16:42:04 -0400502GIT_COMMITTER_DATE='1112354055 +0200'
Shawn O. Pearce8d0fc482007-02-04 00:45:47 -0500503GIT_MERGE_VERBOSITY=5
Junio C Hamanof8246282012-01-10 22:44:45 -0800504GIT_MERGE_AUTOEDIT=no
505export GIT_MERGE_VERBOSITY GIT_MERGE_AUTOEDIT
Junio C Hamano29e55cd2006-02-10 19:11:23 -0800506export GIT_AUTHOR_EMAIL GIT_AUTHOR_NAME
507export GIT_COMMITTER_EMAIL GIT_COMMITTER_NAME
Jeff Kingf2e39372020-07-09 16:42:04 -0400508export GIT_COMMITTER_DATE GIT_AUTHOR_DATE
Jonathan Niederd33738d2009-11-11 17:56:07 -0600509export EDITOR
Junio C Hamanoe1970ce2005-05-13 22:50:32 -0700510
brian m. carlson02a32db2020-07-29 23:14:24 +0000511GIT_DEFAULT_HASH="${GIT_TEST_DEFAULT_HASH:-sha1}"
512export GIT_DEFAULT_HASH
Elijah Newrenf3b964a2021-03-20 00:03:56 +0000513GIT_TEST_MERGE_ALGORITHM="${GIT_TEST_MERGE_ALGORITHM:-ort}"
514export GIT_TEST_MERGE_ALGORITHM
brian m. carlson02a32db2020-07-29 23:14:24 +0000515
Karsten Blees124647c2014-07-12 02:03:01 +0200516# Tests using GIT_TRACE typically don't want <timestamp> <file>:<line> output
517GIT_TRACE_BARE=1
518export GIT_TRACE_BARE
519
Derrick Stoleeb8de3d62021-11-29 13:47:45 +0000520# 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.
524GIT_TRACE2_EVENT_NESTING=100
525export GIT_TRACE2_EVENT_NESTING
526
Ben Peart1f357b02018-09-18 23:29:36 +0000527# Use specific version of the index file format
528if test -n "${GIT_TEST_INDEX_VERSION:+isset}"
Thomas Gummerer5d9fc882014-02-23 21:49:58 +0100529then
Ben Peart1f357b02018-09-18 23:29:36 +0000530 GIT_INDEX_VERSION="$GIT_TEST_INDEX_VERSION"
Thomas Gummerer5d9fc882014-02-23 21:49:58 +0100531 export GIT_INDEX_VERSION
532fi
533
Jeff King5338ed22020-10-21 23:24:00 -0400534if test -n "$GIT_TEST_PERL_FATAL_WARNINGS"
535then
536 GIT_PERL_FATAL_WARNINGS=1
537 export GIT_PERL_FATAL_WARNINGS
538fi
539
Eric Wong412e4ca2021-10-29 00:15:52 +0000540case $GIT_TEST_FSYNC in
541'')
542 GIT_TEST_FSYNC=0
543 export GIT_TEST_FSYNC
544 ;;
545esac
546
Phillip Wood067109a2022-04-09 12:28:37 +0000547# 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ábor8cf58002019-01-05 02:08:55 +0100549if test -n "$valgrind" ||
Phillip Wood067109a2022-04-09 12:28:37 +0000550 test -n "$SANITIZE_ADDRESS" ||
René Scharfeee1431b2012-09-26 22:16:39 +0200551 test -n "$TEST_NO_MALLOC_CHECK"
Junio C Hamano1b3185f2012-09-14 20:38:24 -0700552then
553 setup_malloc_check () {
554 : nothing
555 }
556 teardown_malloc_check () {
557 : nothing
558 }
559else
560 setup_malloc_check () {
Michael J Gruberbaedc592022-03-09 22:41:43 +0100561 local g
562 local t
Junio C Hamano1b3185f2012-09-14 20:38:24 -0700563 MALLOC_CHECK_=3 MALLOC_PERTURB_=165
564 export MALLOC_CHECK_ MALLOC_PERTURB_
Elia Pinto131b94a2022-03-04 13:37:02 +0000565 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 Hamano1b3185f2012-09-14 20:38:24 -0700580 }
581 teardown_malloc_check () {
582 unset MALLOC_CHECK_ MALLOC_PERTURB_
Elia Pinto131b94a2022-03-04 13:37:02 +0000583 unset LD_PRELOAD GLIBC_TUNABLES
Junio C Hamano1b3185f2012-09-14 20:38:24 -0700584 }
585fi
Elia Pintoa731fa92012-09-14 09:54:22 -0700586
Junio C Hamano886a3902007-04-24 11:21:47 -0700587# Protect ourselves from common misconfiguration to export
588# CDPATH into the environment
589unset CDPATH
590
Bert Wesarg5565f472009-11-18 17:15:19 +0100591unset GREP_OPTIONS
René Scharfeac001282013-01-06 18:47:57 +0100592unset UNZIP
Bert Wesarg5565f472009-11-18 17:15:19 +0100593
Robin Rosenberg3d5c0cc2006-09-23 00:35:20 +0200594case $(echo $GIT_TRACE |tr "[A-Z]" "[a-z]") in
Ramsay Jones1c0cc752012-09-01 19:11:49 +01005951|2|true)
Jeff King025232e2015-03-13 00:50:56 -0400596 GIT_TRACE=4
Ramsay Jones1c0cc752012-09-01 19:11:49 +0100597 ;;
Christian Couder6ce4e612006-09-02 18:23:48 +0200598esac
599
Junio C Hamano3f4ab622011-08-08 11:51:00 -0700600# Line feed
601LF='
602'
603
Denton Liubd482d62019-09-05 15:10:05 -0700604# Single quote
605SQ=\'
606
Jeff Kinga42643a2014-12-15 18:15:20 -0500607# UTF-8 ZERO WIDTH NON-JOINER, which HFS+ ignores
608# when case-folding filenames
609u200c=$(printf '\342\200\214')
610
Ævar Arnfjörð Bjarmason70507912021-09-11 13:17:51 +0200611export _x05 _x35 LF u200c EMPTY_TREE EMPTY_BLOB ZERO_OID OID_REGEX
Thomas Rast342e9ef2012-02-17 11:25:09 +0100612
Junio C Hamanoe1970ce2005-05-13 22:50:32 -0700613# 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 Hansend5c1b7c2015-06-17 17:11:21 -0400619test "x$TERM" != "xdumb" && (
Richard Hansenca92a662015-06-17 15:06:25 -0400620 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 Hamanoe1970ce2005-05-13 22:50:32 -0700626
Richard Hansenca92a662015-06-17 15:06:25 -0400627if test -n "$color"
628then
Richard Hansend5c1b7c2015-06-17 17:11:21 -0400629 # 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 Hansenca92a662015-06-17 15:06:25 -0400648 say_color () {
Richard Hansend5c1b7c2015-06-17 17:11:21 -0400649 test -z "$1" && test -n "$quiet" && return
650 eval "say_color_color=\$say_color_$1"
Richard Hansenca92a662015-06-17 15:06:25 -0400651 shift
Richard Hansend5c1b7c2015-06-17 17:11:21 -0400652 printf "%s\\n" "$say_color_color$*$say_color_reset"
Richard Hansenca92a662015-06-17 15:06:25 -0400653 }
654else
655 say_color() {
656 test -z "$1" && test -n "$quiet" && return
657 shift
658 printf "%s\n" "$*"
659 }
660fi
661
Philippe Blainadd52402021-09-06 04:38:59 +0000662USER_TERM="$TERM"
Richard Hansend5c1b7c2015-06-17 17:11:21 -0400663TERM=dumb
Philippe Blainadd52402021-09-06 04:38:59 +0000664export TERM USER_TERM
Richard Hansend5c1b7c2015-06-17 17:11:21 -0400665
Fabian Stelzera6714082021-12-01 09:53:15 +0100666# 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.
671exec 5>&1
672exec 6<&0
673exec 7>&2
674
Ævar Arnfjörð Bjarmason8583bf72021-10-14 02:47:28 +0200675_error_exit () {
Johannes Schindelin78d5e4c2022-05-21 22:18:46 +0000676 finalize_test_output
Clemens Buchacher6e7b5aa2009-06-01 14:14:41 +0200677 GIT_EXIT_OK=t
Pierre Habouzit55db1df2007-10-24 22:03:38 +0200678 exit 1
679}
680
Ævar Arnfjörð Bjarmason8583bf72021-10-14 02:47:28 +0200681error () {
682 say_color error "error: $*"
683 _error_exit
684}
685
SZEDER Gábor165293a2018-11-19 14:13:26 +0100686BUG () {
687 error >&7 "bug in the test script: $*"
688}
689
Ævar Arnfjörð Bjarmason234383c2021-10-14 02:47:29 +0200690BAIL_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 Stelzera6714082021-12-01 09:53:15 +0100698 say_color >&5 error $bail_out "$message"
Ævar Arnfjörð Bjarmason234383c2021-10-14 02:47:29 +0200699 _error_exit
700}
701
Pierre Habouzit55db1df2007-10-24 22:03:38 +0200702say () {
703 say_color info "$*"
704}
705
Jeff King614fe012016-10-22 00:45:06 -0400706if test -n "$HARNESS_ACTIVE"
707then
708 if test "$verbose" = t || test -n "$verbose_only"
709 then
Ævar Arnfjörð Bjarmason234383c2021-10-14 02:47:29 +0200710 BAIL_OUT 'verbose mode forbidden under TAP harness; try --verbose-log'
Jeff King614fe012016-10-22 00:45:06 -0400711 fi
712fi
713
Michele Ballabio570f3222007-11-10 15:17:25 +0100714test "${test_description}" != "" ||
715error "Test script did not set test_description."
716
717if test "$help" = "t"
718then
Uwe Storbeckcb1aefd2014-03-18 01:14:11 +0100719 printf '%s\n' "$test_description"
Michele Ballabio570f3222007-11-10 15:17:25 +0100720 exit 0
721fi
722
Jeff King452320f2016-10-21 06:48:00 -0400723if test "$verbose_log" = "t"
724then
725 exec 3>>"$GIT_TEST_TEE_OUTPUT_FILE" 4>&3
726elif test "$verbose" = "t"
Junio C Hamanoe1970ce2005-05-13 22:50:32 -0700727then
728 exec 4>&2 3>&1
729else
730 exec 4>/dev/null 3>/dev/null
731fi
732
Jeff Kingd88785e2016-05-11 09:44:04 -0400733# 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.
744BASH_XTRACEFD=4
745
Junio C Hamanoe1970ce2005-05-13 22:50:32 -0700746test_failure=0
747test_count=0
Junio C Hamano41ac4142008-02-01 01:50:53 -0800748test_fixed=0
749test_broken=0
Sverre Rabbelier2d84e9f2008-06-08 16:04:33 +0200750test_success=0
Junio C Hamanoe1970ce2005-05-13 22:50:32 -0700751
Fabian Stelzer49da4042021-11-20 16:03:59 +0100752test_missing_prereq=
753
Ævar Arnfjörð Bjarmasond998bd42010-06-24 17:44:46 +0000754test_external_has_tap=0
755
Clemens Buchacherfaa4bc32008-02-27 20:28:45 +0100756die () {
Clemens Buchacher6e7b5aa2009-06-01 14:14:41 +0200757 code=$?
Johannes Schindelin900721e2019-03-13 13:24:11 +0100758 # 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 Buchacher6e7b5aa2009-06-01 14:14:41 +0200762 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 Buchacherfaa4bc32008-02-27 20:28:45 +0100769}
770
Clemens Buchacher6e7b5aa2009-06-01 14:14:41 +0200771GIT_EXIT_OK=
Markus Heidelberg35641312009-01-20 00:43:26 +0100772trap 'die' EXIT
SZEDER Gáborc5c39f42019-03-13 13:24:09 +0100773# 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.
776trap '{ code=$?; set +x; } 2>/dev/null; exit $code' INT TERM HUP
Pavel Roskin41184272005-08-11 12:00:40 -0400777
Thomas Rast12a29b12012-02-17 11:25:08 +0100778# The user-facing functions are loaded from a separate file so that
779# test_perf subshells can have them too
Junio C Hamano3c8f12c2012-06-24 22:01:35 -0700780. "$TEST_DIRECTORY/test-lib-functions.sh"
Jonathan Nieder05236a52010-10-17 02:36:58 +0800781
Junio C Hamano886856a2005-05-14 00:24:27 -0700782# You are not expected to call test_ok_ and test_failure_ directly, use
Torstein Hegge3fa36662013-10-27 10:56:33 +0100783# the test_expect_* functions instead.
Junio C Hamano886856a2005-05-14 00:24:27 -0700784
785test_ok_ () {
Johannes Sixtd5d9de12009-02-05 20:59:27 +0100786 test_success=$(($test_success + 1))
Thomas Rast633fe502013-10-19 23:06:08 +0200787 say_color "" "ok $test_count - $@"
Johannes Schindelin3069f2a2022-05-21 22:18:56 +0000788 finalize_test_case_output ok "$@"
Junio C Hamanoe1970ce2005-05-13 22:50:32 -0700789}
790
Junio C Hamano886856a2005-05-14 00:24:27 -0700791test_failure_ () {
Johannes Schindelin3069f2a2022-05-21 22:18:56 +0000792 failure_label=$1
Johannes Sixtd5d9de12009-02-05 20:59:27 +0100793 test_failure=$(($test_failure + 1))
Junio C Hamanoe31600b2020-05-15 09:47:51 -0700794 say_color error "not ok $test_count - $1"
Junio C Hamanobf0dd8a2005-07-22 19:09:34 -0700795 shift
Uwe Storbeckcb1aefd2014-03-18 01:14:11 +0100796 printf '%s\n' "$*" | sed -e 's/^/# /'
Ævar Arnfjörð Bjarmasonbbfbcd22022-03-23 21:51:31 +0100797 if test -n "$immediate"
798 then
799 say_color error "1..$test_count"
800 _error_exit
801 fi
Johannes Schindelin3069f2a2022-05-21 22:18:56 +0000802 finalize_test_case_output failure "$failure_label" "$@"
Junio C Hamano886856a2005-05-14 00:24:27 -0700803}
804
Junio C Hamano41ac4142008-02-01 01:50:53 -0800805test_known_broken_ok_ () {
Junio C Hamano41ac4142008-02-01 01:50:53 -0800806 test_fixed=$(($test_fixed+1))
Thomas Rast633fe502013-10-19 23:06:08 +0200807 say_color error "ok $test_count - $@ # TODO known breakage vanished"
Johannes Schindelin3069f2a2022-05-21 22:18:56 +0000808 finalize_test_case_output fixed "$@"
Junio C Hamano41ac4142008-02-01 01:50:53 -0800809}
810
811test_known_broken_failure_ () {
Junio C Hamano41ac4142008-02-01 01:50:53 -0800812 test_broken=$(($test_broken+1))
Thomas Rast633fe502013-10-19 23:06:08 +0200813 say_color warn "not ok $test_count - $@ # TODO known breakage"
Johannes Schindelin3069f2a2022-05-21 22:18:56 +0000814 finalize_test_case_output broken "$@"
Junio C Hamano41ac4142008-02-01 01:50:53 -0800815}
Junio C Hamano886856a2005-05-14 00:24:27 -0700816
817test_debug () {
Junio C Hamano8e832eb2005-08-10 22:53:27 -0700818 test "$debug" = "" || eval "$1"
Junio C Hamanoe1970ce2005-05-13 22:50:32 -0700819}
820
Thomas Raste6a6ddc2013-06-18 14:25:58 +0200821match_pattern_list () {
822 arg="$1"
823 shift
824 test -z "$*" && return 1
Jeff King560bf512021-06-16 06:23:07 -0400825 # 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 Raste6a6ddc2013-06-18 14:25:58 +0200843}
844
Ilya Bobyr0445e6f2014-04-30 02:50:44 -0700845match_test_selector_list () {
Elijah Newrenf21ac362020-10-18 00:23:45 +0000846 operation="$1"
847 shift
Ilya Bobyr0445e6f2014-04-30 02:50:44 -0700848 title="$1"
849 shift
850 arg="$1"
851 shift
852 test -z "$1" && return 0
853
Elijah Newrenf21ac362020-10-18 00:23:45 +0000854 # Commas are accepted as separators.
Ilya Bobyr0445e6f2014-04-30 02:50:44 -0700855 OLDIFS=$IFS
Elijah Newrenf21ac362020-10-18 00:23:45 +0000856 IFS=','
Ilya Bobyr0445e6f2014-04-30 02:50:44 -0700857 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 Newrenf21ac362020-10-18 00:23:45 +0000884 echo "error: $operation: invalid non-numeric in range" \
Ilya Bobyr0445e6f2014-04-30 02:50:44 -0700885 "start: '$orig_selector'" >&2
886 exit 1
887 fi
888 if expr "z${selector#*-}" : "z[0-9]*[^0-9]" >/dev/null
889 then
Elijah Newrenf21ac362020-10-18 00:23:45 +0000890 echo "error: $operation: invalid non-numeric in range" \
Ilya Bobyr0445e6f2014-04-30 02:50:44 -0700891 "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 Newrenf21ac362020-10-18 00:23:45 +0000898 case "$title" in *${selector}*)
899 include=$positive
900 ;;
901 esac
902 continue
Ilya Bobyr0445e6f2014-04-30 02:50:44 -0700903 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 Rastff09af32013-06-23 20:12:56 +0200942maybe_teardown_verbose () {
943 test -z "$verbose_only" && return
944 exec 4>/dev/null 3>/dev/null
945 verbose=
946}
947
948last_verbose=t
949maybe_setup_verbose () {
950 test -z "$verbose_only" && return
Jeff King560bf512021-06-16 06:23:07 -0400951 if match_pattern_list $test_count "$verbose_only"
Thomas Rastff09af32013-06-23 20:12:56 +0200952 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 Rast5dfc3682013-06-23 20:12:57 +0200968maybe_teardown_valgrind () {
969 test -z "$GIT_VALGRIND" && return
970 GIT_VALGRIND_ENABLED=
971}
972
973maybe_setup_valgrind () {
974 test -z "$GIT_VALGRIND" && return
Thomas Rast26a07302013-10-19 23:06:07 +0200975 if test -z "$valgrind_only"
Thomas Rast5dfc3682013-06-23 20:12:57 +0200976 then
977 GIT_VALGRIND_ENABLED=t
978 return
979 fi
980 GIT_VALGRIND_ENABLED=
Jeff King560bf512021-06-16 06:23:07 -0400981 if match_pattern_list $test_count "$valgrind_only"
Thomas Rast5dfc3682013-06-23 20:12:57 +0200982 then
983 GIT_VALGRIND_ENABLED=t
984 fi
985}
986
Johannes Schindelin477dcad2020-03-26 15:35:26 +0000987trace_level_=0
Jeff King9b5fe782015-08-06 01:33:57 -0400988want_trace () {
Jeff Kingf5ba2de2017-12-08 05:47:17 -0500989 test "$trace" = t && {
990 test "$verbose" = t || test "$verbose_log" = t
991 }
Jeff King9b5fe782015-08-06 01:33:57 -0400992}
993
Jeff Kinga136f6d2014-10-10 02:47:27 -0400994# 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").
998test_eval_inner_ () {
999 # Do not add anything extra (including LF) after '$*'
1000 eval "
Johannes Schindelin477dcad2020-03-26 15:35:26 +00001001 want_trace && trace_level_=$(($trace_level_+1)) && set -x
Jeff Kinga136f6d2014-10-10 02:47:27 -04001002 $*"
1003}
1004
Jonathan Niedera7c58f22011-08-08 03:17:09 +02001005test_eval_ () {
Jeff King90c8a1d2017-12-08 05:47:08 -05001006 # 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 Kinga136f6d2014-10-10 02:47:27 -04001008 # 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 King90c8a1d2017-12-08 05:47:08 -05001012 # 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 Kinga136f6d2014-10-10 02:47:27 -04001028 {
Jeff Kinga136f6d2014-10-10 02:47:27 -04001029 test_eval_ret_=$?
Jeff King9b5fe782015-08-06 01:33:57 -04001030 if want_trace
Jeff Kinga136f6d2014-10-10 02:47:27 -04001031 then
Johannes Schindelin477dcad2020-03-26 15:35:26 +00001032 test 1 = $trace_level_ && set +x
1033 trace_level_=$(($trace_level_-1))
Jeff Kinga136f6d2014-10-10 02:47:27 -04001034 fi
Jeff King90c8a1d2017-12-08 05:47:08 -05001035 } 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 Kinga136f6d2014-10-10 02:47:27 -04001041 return $test_eval_ret_
Jonathan Niedera7c58f22011-08-08 03:17:09 +02001042}
1043
Pavel Roskin4d9d62f2005-08-10 23:56:21 -04001044test_run_ () {
Jonathan Niederb6b0afd2010-05-06 03:41:10 -05001045 test_cleanup=:
Junio C Hamanob5867442011-06-27 11:02:22 -07001046 expecting_failure=$2
Jeff Kingbb79af92015-03-20 06:05:48 -04001047
Jeff King92b269f2015-04-22 16:09:57 -04001048 if test "${GIT_TEST_CHAIN_LINT:-1}" != 0; then
Jeff King2a01ef82015-08-06 01:31:47 -04001049 # 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 Kingbb79af92015-03-20 06:05:48 -04001053 # 117 is magic because it is unlikely to match the exit
1054 # code of other programs
Jeff King2d86a962021-05-13 02:25:53 -04001055 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 Hamano99a64e42017-03-22 22:43:18 -07001060 then
SZEDER Gábor165293a2018-11-19 14:13:26 +01001061 BUG "broken &&-chain or run-away HERE-DOC: $1"
Jeff Kingbb79af92015-03-20 06:05:48 -04001062 fi
Jeff King2a01ef82015-08-06 01:31:47 -04001063 trace=$trace_tmp
Jeff Kingbb79af92015-03-20 06:05:48 -04001064 fi
1065
Thomas Rasta57397b2013-06-17 11:18:46 +02001066 setup_malloc_check
Jonathan Niedera7c58f22011-08-08 03:17:09 +02001067 test_eval_ "$1"
Jonathan Niederb6b0afd2010-05-06 03:41:10 -05001068 eval_ret=$?
Thomas Rasta57397b2013-06-17 11:18:46 +02001069 teardown_malloc_check
Junio C Hamanob5867442011-06-27 11:02:22 -07001070
Jeff Kinga136f6d2014-10-10 02:47:27 -04001071 if test -z "$immediate" || test $eval_ret = 0 ||
1072 test -n "$expecting_failure" && test "$test_cleanup" != ":"
Junio C Hamanob5867442011-06-27 11:02:22 -07001073 then
Junio C Hamano1b3185f2012-09-14 20:38:24 -07001074 setup_malloc_check
Jonathan Niedera7c58f22011-08-08 03:17:09 +02001075 test_eval_ "$test_cleanup"
Junio C Hamano1b3185f2012-09-14 20:38:24 -07001076 teardown_malloc_check
Junio C Hamanob5867442011-06-27 11:02:22 -07001077 fi
Ramsay Jones1c0cc752012-09-01 19:11:49 +01001078 if test "$verbose" = "t" && test -n "$HARNESS_ACTIVE"
1079 then
Ævar Arnfjörð Bjarmason57e15382010-06-24 17:44:47 +00001080 echo ""
1081 fi
Jonathan Niederaa0bcf92011-08-08 03:15:34 +02001082 return "$eval_ret"
Pavel Roskin4d9d62f2005-08-10 23:56:21 -04001083}
1084
Thomas Rastae753422013-06-18 14:25:59 +02001085test_start_ () {
Johannes Sixt8586f982009-02-05 21:20:56 +01001086 test_count=$(($test_count+1))
Thomas Rastff09af32013-06-23 20:12:56 +02001087 maybe_setup_verbose
Thomas Rast5dfc3682013-06-23 20:12:57 +02001088 maybe_setup_valgrind
Johannes Schindelin0f5ae592022-05-21 22:18:51 +00001089 start_test_case_output "$@"
Thomas Rastae753422013-06-18 14:25:59 +02001090}
1091
1092test_finish_ () {
1093 echo >&3 ""
Thomas Rast5dfc3682013-06-23 20:12:57 +02001094 maybe_teardown_valgrind
Thomas Rastff09af32013-06-23 20:12:56 +02001095 maybe_teardown_verbose
Johannes Schindelinaf9912e2019-01-29 06:19:34 -08001096 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 Rastae753422013-06-18 14:25:59 +02001101}
1102
1103test_skip () {
Junio C Hamano04ece592006-12-28 17:58:00 -08001104 to_skip=
Ilya Bobyref2ac682014-04-30 02:50:43 -07001105 skipped_reason=
Jeff King560bf512021-06-16 06:23:07 -04001106 if match_pattern_list $this_test.$test_count "$GIT_SKIP_TESTS"
Thomas Raste6a6ddc2013-06-18 14:25:58 +02001107 then
1108 to_skip=t
Ilya Bobyref2ac682014-04-30 02:50:43 -07001109 skipped_reason="GIT_SKIP_TESTS"
Thomas Raste6a6ddc2013-06-18 14:25:58 +02001110 fi
SZEDER Gábore0316692019-11-12 13:24:38 +01001111 if test -z "$to_skip" && test -n "$run_list" &&
Elijah Newrenf21ac362020-10-18 00:23:45 +00001112 ! match_test_selector_list '--run' "$1" $test_count "$run_list"
SZEDER Gábore0316692019-11-12 13:24:38 +01001113 then
1114 to_skip=t
1115 skipped_reason="--run"
1116 fi
Jonathan Nieder05236a52010-10-17 02:36:58 +08001117 if test -z "$to_skip" && test -n "$test_prereq" &&
1118 ! test_have_prereq "$test_prereq"
Johannes Sixta7bb3942009-03-01 21:04:46 +01001119 then
1120 to_skip=t
Ilya Bobyref2ac682014-04-30 02:50:43 -07001121
Jonathan Nieder07431fc2010-08-24 02:34:10 -05001122 of_prereq=
Jonathan Nieder05236a52010-10-17 02:36:58 +08001123 if test "$missing_prereq" != "$test_prereq"
Jonathan Nieder07431fc2010-08-24 02:34:10 -05001124 then
Jonathan Nieder05236a52010-10-17 02:36:58 +08001125 of_prereq=" of $test_prereq"
Jonathan Nieder07431fc2010-08-24 02:34:10 -05001126 fi
Ilya Bobyref2ac682014-04-30 02:50:43 -07001127 skipped_reason="missing $missing_prereq${of_prereq}"
Fabian Stelzer49da4042021-11-20 16:03:59 +01001128
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 Bobyref2ac682014-04-30 02:50:43 -07001136 fi
Jonathan Nieder07431fc2010-08-24 02:34:10 -05001137
Ilya Bobyref2ac682014-04-30 02:50:43 -07001138 case "$to_skip" in
1139 t)
Johannes Schindelin22231902019-01-29 06:19:27 -08001140
Ilya Bobyref2ac682014-04-30 02:50:43 -07001141 say_color skip "ok $test_count # skip $1 ($skipped_reason)"
Junio C Hamano04ece592006-12-28 17:58:00 -08001142 : true
Johannes Schindelin3069f2a2022-05-21 22:18:56 +00001143 finalize_test_case_output skip "$@"
Junio C Hamano04ece592006-12-28 17:58:00 -08001144 ;;
1145 *)
1146 false
1147 ;;
1148 esac
1149}
1150
Thomas Rast342e9ef2012-02-17 11:25:09 +01001151# stub; perf-lib overrides it
1152test_at_end_hook_ () {
1153 :
1154}
1155
Johannes Schindelin900721e2019-03-13 13:24:11 +01001156test_atexit_cleanup=:
1157test_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 Hamanoe1970ce2005-05-13 22:50:32 -07001171test_done () {
Clemens Buchacher6e7b5aa2009-06-01 14:14:41 +02001172 GIT_EXIT_OK=t
Sverre Rabbelier2d84e9f2008-06-08 16:04:33 +02001173
Johannes Schindelin900721e2019-03-13 13:24:11 +01001174 # 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 Schindelin78d5e4c2022-05-21 22:18:46 +00001178 finalize_test_output
Johannes Schindelin22231902019-01-29 06:19:27 -08001179
Ramsay Jones1c0cc752012-09-01 19:11:49 +01001180 if test -z "$HARNESS_ACTIVE"
1181 then
SZEDER Gábor62c379b2019-01-05 02:08:56 +01001182 mkdir -p "$TEST_RESULTS_DIR"
Ævar Arnfjörð Bjarmason8ef1abe2010-08-11 19:37:31 +00001183
SZEDER Gábor62c379b2019-01-05 02:08:56 +01001184 cat >"$TEST_RESULTS_BASE.counts" <<-EOF
Mathias Lafeldtc54e6be2011-04-29 14:30:30 +02001185 total $test_count
1186 success $test_success
1187 fixed $test_fixed
1188 broken $test_broken
1189 failed $test_failure
Fabian Stelzer49da4042021-11-20 16:03:59 +01001190 missing_prereq $test_missing_prereq
Mathias Lafeldtc54e6be2011-04-29 14:30:30 +02001191
1192 EOF
Ævar Arnfjörð Bjarmason8ef1abe2010-08-11 19:37:31 +00001193 fi
Junio C Hamano41ac4142008-02-01 01:50:53 -08001194
1195 if test "$test_fixed" != 0
1196 then
Thomas Rast633fe502013-10-19 23:06:08 +02001197 say_color error "# $test_fixed known breakage(s) vanished; please update test(s)"
Junio C Hamano41ac4142008-02-01 01:50:53 -08001198 fi
1199 if test "$test_broken" != 0
1200 then
Thomas Rast633fe502013-10-19 23:06:08 +02001201 say_color warn "# still have $test_broken known breakage(s)"
Adam Spiersb73d9a22012-12-16 18:28:15 +00001202 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 Hamano11d54b82008-02-03 00:23:02 -08001207 else
Adam Spiersb73d9a22012-12-16 18:28:15 +00001208 test_remaining=$test_count
Junio C Hamano11d54b82008-02-03 00:23:02 -08001209 msg="$test_count test(s)"
Junio C Hamano41ac4142008-02-01 01:50:53 -08001210 fi
Junio C Hamanoe1970ce2005-05-13 22:50:32 -07001211 case "$test_failure" in
Junio C Hamano10b94e22005-12-09 17:32:18 -08001212 0)
Ramsay Jones1c0cc752012-09-01 19:11:49 +01001213 if test $test_external_has_tap -eq 0
1214 then
Adam Spiersb73d9a22012-12-16 18:28:15 +00001215 if test $test_remaining -gt 0
Ramsay Jonesd87bd7c2012-09-01 19:26:21 +01001216 then
Thomas Rast633fe502013-10-19 23:06:08 +02001217 say_color pass "# passed all $msg"
Ramsay Jonesd87bd7c2012-09-01 19:26:21 +01001218 fi
Junio C Hamanoc7018be2017-05-18 11:52:20 +09001219
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ð Bjarmasond998bd42010-06-24 17:44:46 +00001232 fi
Johannes Schindelinabc5d372008-08-08 13:08:37 +02001233
Ævar Arnfjörð Bjarmasonedc23842021-05-10 16:19:00 +02001234 if test -z "$debug" && test -n "$remove_trash"
Junio C Hamano4d0912a2017-04-24 23:39:47 -07001235 then
Junio C Hamano06478da2017-04-23 17:15:09 -07001236 test -d "$TRASH_DIRECTORY" ||
Junio C Hamano4d0912a2017-04-24 23:39:47 -07001237 error "Tests passed but trash directory already removed before test cleanup; aborting"
Johannes Schindelinabc5d372008-08-08 13:08:37 +02001238
Junio C Hamano06478da2017-04-23 17:15:09 -07001239 cd "$TRASH_DIRECTORY/.." &&
Johannes Schindelin046e90d2019-01-29 06:19:35 -08001240 rm -fr "$TRASH_DIRECTORY" || {
1241 # try again in a bit
1242 sleep 5;
1243 rm -fr "$TRASH_DIRECTORY"
1244 } ||
Junio C Hamano4d0912a2017-04-24 23:39:47 -07001245 error "Tests passed but test cleanup failed; aborting"
Junio C Hamano4d0912a2017-04-24 23:39:47 -07001246 fi
Thomas Rast342e9ef2012-02-17 11:25:09 +01001247 test_at_end_hook_
1248
Junio C Hamanoe1970ce2005-05-13 22:50:32 -07001249 exit 0 ;;
1250
1251 *)
Ramsay Jones1c0cc752012-09-01 19:11:49 +01001252 if test $test_external_has_tap -eq 0
1253 then
Thomas Rast633fe502013-10-19 23:06:08 +02001254 say_color error "# failed $test_failure among $msg"
1255 say "1..$test_count"
Ævar Arnfjörð Bjarmasond998bd42010-06-24 17:44:46 +00001256 fi
Ævar Arnfjörð Bjarmason5099b992010-06-24 21:52:12 +00001257
Junio C Hamanoe1970ce2005-05-13 22:50:32 -07001258 exit 1 ;;
1259
1260 esac
1261}
1262
Matthew Ogilviee4597aa2009-12-02 22:14:06 -07001263if test -n "$valgrind"
Johannes Schindelin4e1be632009-02-04 00:25:59 +01001264then
Johannes Schindelin4e1be632009-02-04 00:25:59 +01001265 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 King36bfb0e2011-06-17 16:36:32 -04001285 # handle only executables, unless they are shell libraries that
Jonathan Nieder11d62142013-11-25 13:03:52 -08001286 # need to be in the exec-path.
Jeff King36bfb0e2011-06-17 16:36:32 -04001287 test -x "$1" ||
Ævar Arnfjörð Bjarmason2a59a6e2018-08-24 15:20:11 +00001288 test "# " = "$(test_copy_bytes 2 <"$1")" ||
Jeff King36bfb0e2011-06-17 16:36:32 -04001289 return;
Johannes Schindelin4e1be632009-02-04 00:25:59 +01001290
1291 base=$(basename "$1")
René Scharfe28fab7b2016-10-28 00:14:00 +02001292 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 Schindelin4e1be632009-02-04 00:25:59 +01001300 # do not override scripts
1301 if test -x "$symlink_target" &&
1302 test ! -d "$symlink_target" &&
Ævar Arnfjörð Bjarmason2a59a6e2018-08-24 15:20:11 +00001303 test "#!" != "$(test_copy_bytes 2 <"$symlink_target")"
Johannes Schindelin4e1be632009-02-04 00:25:59 +01001304 then
1305 symlink_target=../valgrind.sh
1306 fi
Johannes Schindelinefd92ff2009-02-04 00:26:08 +01001307 case "$base" in
1308 *.sh|*.perl)
1309 symlink_target=../unprocessed-script
1310 esac
Johannes Schindelin4e1be632009-02-04 00:25:59 +01001311 # 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 Rast26a07302013-10-19 23:06:07 +02001315 # override all git executables in TEST_DIRECTORY/..
1316 GIT_VALGRIND=$TEST_DIRECTORY/valgrind
1317 mkdir -p "$GIT_VALGRIND"/bin
Johannes Schindelin503e2242016-07-11 13:45:08 +02001318 for file in $GIT_BUILD_DIR/git* $GIT_BUILD_DIR/t/helper/test-*
Thomas Rast26a07302013-10-19 23:06:07 +02001319 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 Schindelinefd92ff2009-02-04 00:26:08 +01001330 do
Thomas Rast26a07302013-10-19 23:06:07 +02001331 make_valgrind_symlink "$file"
Johannes Schindelinefd92ff2009-02-04 00:26:08 +01001332 done
Thomas Rast26a07302013-10-19 23:06:07 +02001333 done
1334 IFS=$OLDIFS
Johannes Schindelin4e1be632009-02-04 00:25:59 +01001335 PATH=$GIT_VALGRIND/bin:$PATH
1336 GIT_EXEC_PATH=$GIT_VALGRIND/bin
1337 export GIT_VALGRIND
Thomas Rast952af352013-03-31 10:00:16 +02001338 GIT_VALGRIND_MODE="$valgrind"
1339 export GIT_VALGRIND_MODE
Thomas Rast5dfc3682013-06-23 20:12:57 +02001340 GIT_VALGRIND_ENABLED=t
Thomas Rast26a07302013-10-19 23:06:07 +02001341 test -n "$valgrind_only" && GIT_VALGRIND_ENABLED=
Thomas Rast5dfc3682013-06-23 20:12:57 +02001342 export GIT_VALGRIND_ENABLED
Ramsay Jones1c0cc752012-09-01 19:11:49 +01001343elif test -n "$GIT_TEST_INSTALLED"
1344then
Matthew Ogilviee4597aa2009-12-02 22:14:06 -07001345 GIT_EXEC_PATH=$($GIT_TEST_INSTALLED/git --exec-path) ||
1346 error "Cannot run git from $GIT_TEST_INSTALLED."
Johannes Schindelin16df35c2018-11-12 05:48:33 -08001347 PATH=$GIT_TEST_INSTALLED:$GIT_BUILD_DIR/t/helper:$PATH
Matthew Ogilviee4597aa2009-12-02 22:14:06 -07001348 GIT_EXEC_PATH=${GIT_TEST_EXEC_PATH:-$GIT_EXEC_PATH}
1349else # normal case, use ../bin-wrappers only unless $with_dashes:
Johannes Schindelindd167a32019-01-29 06:19:37 -08001350 if test -n "$no_bin_wrappers"
Ramsay Jones1c0cc752012-09-01 19:11:49 +01001351 then
Matthew Ogilviee4597aa2009-12-02 22:14:06 -07001352 with_dashes=t
Johannes Schindelindd167a32019-01-29 06:19:37 -08001353 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 Ogilviee4597aa2009-12-02 22:14:06 -07001364 fi
Ævar Arnfjörð Bjarmason6cec5c62010-08-19 16:08:10 +00001365 GIT_EXEC_PATH=$GIT_BUILD_DIR
Ramsay Jones1c0cc752012-09-01 19:11:49 +01001366 if test -n "$with_dashes"
1367 then
Johannes Schindelinca7312d2019-01-29 06:19:35 -08001368 PATH="$GIT_BUILD_DIR:$GIT_BUILD_DIR/t/helper:$PATH"
Matthew Ogilviee4597aa2009-12-02 22:14:06 -07001369 fi
Johannes Schindelin4e1be632009-02-04 00:25:59 +01001370fi
Ævar Arnfjörð Bjarmason6cec5c62010-08-19 16:08:10 +00001371GIT_TEMPLATE_DIR="$GIT_BUILD_DIR"/templates/blt
Jeff King8bfa6bd2008-02-06 05:11:53 -05001372GIT_CONFIG_NOSYSTEM=1
Jonathan Nieder3c995be2011-03-15 04:05:10 -05001373GIT_ATTR_NOSYSTEM=1
SZEDER Gábor614c3d82021-08-29 11:25:36 +02001374GIT_CEILING_DIRECTORIES="$TRASH_DIRECTORY/.."
1375export PATH GIT_EXEC_PATH GIT_TEMPLATE_DIR GIT_CONFIG_NOSYSTEM GIT_ATTR_NOSYSTEM GIT_CEILING_DIRECTORIES
Junio C Hamano49ccb082005-12-07 21:52:28 -08001376
Junio C Hamano5e87eae2010-06-11 09:40:25 -07001377if test -z "$GIT_TEST_CMP"
1378then
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
1385fi
1386
Ævar Arnfjörð Bjarmason20d2a302017-12-10 21:13:33 +00001387GITPERLLIB="$GIT_BUILD_DIR"/perl/build/lib
Petr Baudis6fcca932006-07-03 23:16:32 +02001388export GITPERLLIB
Ævar Arnfjörð Bjarmason6cec5c62010-08-19 16:08:10 +00001389test -d "$GIT_BUILD_DIR"/templates/blt || {
Junio C Hamanoeea42062005-12-10 20:55:32 -08001390 error "You haven't built things yet, have you?"
1391}
Junio C Hamanoe1970ce2005-05-13 22:50:32 -07001392
Johannes Schindelind6096152019-01-21 07:12:19 -08001393if ! test -x "$GIT_BUILD_DIR"/t/helper/test-tool$X
Ramsay Jones1c0cc752012-09-01 19:11:49 +01001394then
Nguyễn Thái Ngọc Duy0e496492018-03-24 08:44:31 +01001395 echo >&2 'You need to build test-tool:'
1396 echo >&2 'Run "make t/helper/test-tool" in the source (toplevel) directory'
Eric Wong56cf9802007-02-24 16:59:52 -08001397 exit 1
1398fi
1399
Ævar Arnfjörð Bjarmasonedc23842021-05-10 16:19:00 +02001400# Are we running this test at all?
1401remove_trash=
Johannes Sixtd5d9de12009-02-05 20:59:27 +01001402this_test=${0##*/}
1403this_test=${this_test%%-*}
Jeff King560bf512021-06-16 06:23:07 -04001404if match_pattern_list "$this_test" "$GIT_SKIP_TESTS"
Thomas Raste6a6ddc2013-06-18 14:25:58 +02001405then
1406 say_color info >&3 "skipping test $this_test altogether"
1407 skip_all="skip all tests in $this_test"
1408 test_done
1409fi
Johannes Sixtf17e9fb2009-03-11 21:17:26 +01001410
Ævar Arnfjörð Bjarmason956d2e42021-09-23 11:20:46 +02001411# skip non-whitelisted tests when compiled with SANITIZE=leak
1412if test -n "$SANITIZE_LEAK"
1413then
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
1426elif test_bool_env GIT_TEST_PASSING_SANITIZE_LEAK false
1427then
Ævar Arnfjörð Bjarmason234383c2021-10-14 02:47:29 +02001428 BAIL_OUT "GIT_TEST_PASSING_SANITIZE_LEAK=true has no effect except when compiled with SANITIZE=leak"
Ævar Arnfjörð Bjarmason956d2e42021-09-23 11:20:46 +02001429fi
1430
Ævar Arnfjörð Bjarmasonedc23842021-05-10 16:19:00 +02001431# Last-minute variable setup
Philippe Blainadd52402021-09-06 04:38:59 +00001432USER_HOME="$HOME"
Ævar Arnfjörð Bjarmasonedc23842021-05-10 16:19:00 +02001433HOME="$TRASH_DIRECTORY"
1434GNUPGHOME="$HOME/gnupg-home-not-used"
Philippe Blainadd52402021-09-06 04:38:59 +00001435export HOME GNUPGHOME USER_HOME
Ævar Arnfjörð Bjarmasonedc23842021-05-10 16:19:00 +02001436
Ævar Arnfjörð Bjarmason5d22e182021-10-11 03:41:59 +02001437# "rm -rf" existing trash directory, even if a previous run left it
1438# with bad permissions.
1439remove_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 Hamanoe1970ce2005-05-13 22:50:32 -07001449# Test repository
Ævar Arnfjörð Bjarmason5d22e182021-10-11 03:41:59 +02001450remove_trash_directory "$TRASH_DIRECTORY" || {
Clemens Buchacher6e7b5aa2009-06-01 14:14:41 +02001451 GIT_EXIT_OK=t
Junio C Hamano8d14ac92008-03-18 21:58:01 -07001452 echo >&5 "FATAL: Cannot prepare test area"
1453 exit 1
1454}
1455
Ævar Arnfjörð Bjarmasonedc23842021-05-10 16:19:00 +02001456remove_trash=t
Ramsay Jones1c0cc752012-09-01 19:11:49 +01001457if test -z "$TEST_NO_CREATE_REPO"
1458then
Ævar Arnfjörð Bjarmasonf0d4d392021-05-10 16:19:10 +02001459 git init "$TRASH_DIRECTORY" >&3 2>&4 ||
1460 error "cannot run git init"
Thomas Rast342e9ef2012-02-17 11:25:09 +01001461else
John Keeping38b074d2013-04-14 17:34:56 +01001462 mkdir -p "$TRASH_DIRECTORY"
Thomas Rast342e9ef2012-02-17 11:25:09 +01001463fi
Johannes Schindelin22231902019-01-29 06:19:27 -08001464
Lea Wiemann1bd9c642008-05-31 23:11:21 +02001465# 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 Keeping38b074d2013-04-14 17:34:56 +01001467cd -P "$TRASH_DIRECTORY" || exit 1
Junio C Hamano04ece592006-12-28 17:58:00 -08001468
Johannes Schindelin78d5e4c2022-05-21 22:18:46 +00001469start_test_output "$0"
Johannes Schindelin22231902019-01-29 06:19:27 -08001470
brian m. carlson192b5172020-02-22 20:17:31 +00001471# Convenience
Ævar Arnfjörð Bjarmason70507912021-09-11 13:17:51 +02001472# A regexp to match 5 and 35 hexdigits
brian m. carlson192b5172020-02-22 20:17:31 +00001473_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. carlson192b5172020-02-22 20:17:31 +00001475
1476test_oid_init
1477
1478ZERO_OID=$(test_oid zero)
1479OID_REGEX=$(echo $ZERO_OID | sed -e 's/0/[0-9a-f]/g')
brian m. carlsona1142962020-05-13 00:53:41 +00001480OIDPATH_REGEX=$(test_oid_to_path $ZERO_OID | sed -e 's/0/[0-9a-f]/g')
brian m. carlson192b5172020-02-22 20:17:31 +00001481EMPTY_TREE=$(test_oid empty_tree)
1482EMPTY_BLOB=$(test_oid empty_blob)
brian m. carlson192b5172020-02-22 20:17:31 +00001483
Junio C Hamano11f470a2019-02-09 10:25:26 -08001484# 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 Casey86487322009-08-28 17:32:41 -05001489yes () {
1490 if test $# = 0
1491 then
1492 y=y
1493 else
1494 y="$*"
1495 fi
1496
Johannes Schindelin6129c932016-02-02 19:15:53 +01001497 i=0
1498 while test $i -lt 99
Brandon Casey86487322009-08-28 17:32:41 -05001499 do
Johannes Schindelin6129c932016-02-02 19:15:53 +01001500 echo "$y"
1501 i=$(($i+1))
Brandon Casey86487322009-08-28 17:32:41 -05001502 done
1503}
1504
Ævar Arnfjörð Bjarmasonc7400392019-06-21 12:18:12 +02001505# 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ábor43a2afe2019-11-22 14:14:36 +01001508# 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ð Bjarmasonc7400392019-06-21 12:18:12 +02001510GIT_TEST_FAIL_PREREQS_INTERNAL=
1511if test -n "$GIT_TEST_FAIL_PREREQS"
1512then
SZEDER Gábor43a2afe2019-11-22 14:14:36 +01001513 if test_bool_env GIT_TEST_FAIL_PREREQS false
Ævar Arnfjörð Bjarmasonc7400392019-06-21 12:18:12 +02001514 then
1515 GIT_TEST_FAIL_PREREQS_INTERNAL=true
1516 test_set_prereq FAIL_PREREQS
1517 fi
1518else
1519 test_lazy_prereq FAIL_PREREQS '
SZEDER Gábor43a2afe2019-11-22 14:14:36 +01001520 test_bool_env GIT_TEST_FAIL_PREREQS false
Ævar Arnfjörð Bjarmasonc7400392019-06-21 12:18:12 +02001521 '
1522fi
1523
Ed Maste7187c7b2019-11-27 17:15:07 +00001524# Fix some commands on Windows, and other OS-specific things
Johannes Schindelind98b2c52016-07-21 18:02:54 +02001525uname_s=$(uname -s)
1526case $uname_s in
Johannes Sixtf17e9fb2009-03-11 21:17:26 +01001527*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 Sixt41141562009-03-13 23:35:24 +01001535 # git sees Windows-style pwd
1536 pwd () {
1537 builtin pwd -W
1538 }
Johannes Sixtee9fb682009-03-13 22:55:27 +01001539 # no POSIX permissions
Johannes Sixt6fd11062009-03-13 23:00:15 +01001540 # backslashes in pathspec are converted to '/'
Johannes Sixtfb9a2be2009-03-25 13:21:15 +01001541 # exec does not inherit the PID
Pat Thoytsa94114a2010-09-12 10:37:24 +01001542 test_set_prereq MINGW
Brice Lambson5f4e02e2014-08-30 23:39:07 +02001543 test_set_prereq NATIVE_CRLF
Ramsay Jonesa31d0662010-12-14 18:32:12 +00001544 test_set_prereq SED_STRIPS_CR
Mark Levedahl97669ee2013-07-18 17:44:57 -04001545 test_set_prereq GREP_STRIPS_CR
Adam Dinwoodiebccc37f2021-04-29 21:11:44 +01001546 test_set_prereq WINDOWS
Johannes Sixt4d715ac2013-10-26 21:17:15 +02001547 GIT_TEST_CMP=mingw_test_cmp
Ramsay Jonesa31d0662010-12-14 18:32:12 +00001548 ;;
1549*CYGWIN*)
1550 test_set_prereq POSIXPERM
Ramsay Jonesa31d0662010-12-14 18:32:12 +00001551 test_set_prereq EXECKEEPSPID
Pete Wyckoffcfa96492013-01-26 22:11:11 -05001552 test_set_prereq CYGWIN
Ramsay Jonesa31d0662010-12-14 18:32:12 +00001553 test_set_prereq SED_STRIPS_CR
Mark Levedahl97669ee2013-07-18 17:44:57 -04001554 test_set_prereq GREP_STRIPS_CR
Adam Dinwoodiebccc37f2021-04-29 21:11:44 +01001555 test_set_prereq WINDOWS
Johannes Sixtee9fb682009-03-13 22:55:27 +01001556 ;;
1557*)
1558 test_set_prereq POSIXPERM
Johannes Sixt6fd11062009-03-13 23:00:15 +01001559 test_set_prereq BSLASHPSPEC
Johannes Sixtfb9a2be2009-03-25 13:21:15 +01001560 test_set_prereq EXECKEEPSPID
Johannes Sixtf17e9fb2009-03-11 21:17:26 +01001561 ;;
1562esac
Johannes Sixt704a3142009-03-04 22:38:24 +01001563
Greg Priceddcfc7c2020-05-15 22:33:38 -07001564# Detect arches where a few things don't work
1565uname_m=$(uname -m)
1566case $uname_m in
1567parisc* | hppa*)
1568 test_set_prereq HPPA
1569 ;;
1570esac
1571
Han-Wen Nienhuysc305e662021-05-31 16:56:29 +00001572test_set_prereq REFFILES
1573
Zbigniew Jędrzejewski-Szmekb0826872012-04-27 11:25:25 +02001574( COLUMNS=1 && test $COLUMNS = 1 ) && test_set_prereq COLUMNS_CAN_BE_1
Ævar Arnfjörð Bjarmason7596fe92022-06-15 12:36:32 +02001575test -z "$NO_CURL" && test_set_prereq LIBCURL
Jeff King1b19ccd2009-04-03 15:33:59 -04001576test -z "$NO_PERL" && test_set_prereq PERL
Ævar Arnfjörð Bjarmason68c7d272017-05-25 19:45:31 +00001577test -z "$NO_PTHREADS" && test_set_prereq PTHREADS
Johan Herlandd4e1b472009-11-18 02:42:31 +01001578test -z "$NO_PYTHON" && test_set_prereq PYTHON
Ævar Arnfjörð Bjarmason75997302021-01-24 02:58:33 +01001579test -n "$USE_LIBPCRE2" && test_set_prereq PCRE
Ævar Arnfjörð Bjarmasonce9a2572017-11-23 14:16:57 +00001580test -n "$USE_LIBPCRE2" && test_set_prereq LIBPCRE2
Ævar Arnfjörð Bjarmason5e9637c2011-11-18 00:14:42 +01001581test -z "$NO_GETTEXT" && test_set_prereq GETTEXT
Ævar Arnfjörð Bjarmason2cdc2922021-09-23 11:20:45 +02001582test -n "$SANITIZE_LEAK" && test_set_prereq SANITIZE_LEAK
Ævar Arnfjörð Bjarmason58407e02022-05-12 15:32:15 -07001583test -n "$GIT_VALGRIND_ENABLED" && test_set_prereq VALGRIND
Jeff King1b19ccd2009-04-03 15:33:59 -04001584
Nguyễn Thái Ngọc Duy4592e602018-08-18 16:41:28 +02001585if test -z "$GIT_TEST_CHECK_CACHE_TREE"
1586then
1587 GIT_TEST_CHECK_CACHE_TREE=true
1588 export GIT_TEST_CHECK_CACHE_TREE
1589fi
1590
Adam Spiers20073272013-04-11 03:07:04 +01001591test_lazy_prereq PIPE '
1592 # test whether the filesystem supports FIFOs
Ramsay Jones7b7bea22017-09-17 23:56:00 +01001593 test_have_prereq !MINGW,!CYGWIN &&
1594 rm -f testfifo && mkfifo testfifo
Adam Spiers20073272013-04-11 03:07:04 +01001595'
1596
Junio C Hamano04083f22012-07-26 15:50:45 -07001597test_lazy_prereq SYMLINKS '
1598 # test whether the filesystem supports symbolic links
1599 ln -s x y && test -h y
1600'
Ævar Arnfjörð Bjarmasonc91cfd12010-08-06 22:09:09 +00001601
Thomas Bétous3e7d4882021-08-02 21:07:30 +00001602test_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 Niederb018c732013-11-25 13:02:16 -08001608test_lazy_prereq FILEMODE '
1609 test "$(git config --bool core.filemode)" = true
1610'
1611
Michael J Gruberac39aa62012-07-26 15:39:53 +02001612test_lazy_prereq CASE_INSENSITIVE_FS '
1613 echo good >CamelCase &&
1614 echo bad >camelcase &&
1615 test "$(cat CamelCase)" != good
1616'
1617
William Chargin6ec63302018-08-06 11:35:08 -07001618test_lazy_prereq FUNNYNAMES '
1619 test_have_prereq !MINGW &&
1620 touch -- \
1621 "FUNNYNAMES tab embedded" \
1622 "FUNNYNAMES \"quote embedded\"" \
1623 "FUNNYNAMES newline
1624embedded" 2>/dev/null &&
1625 rm -- \
1626 "FUNNYNAMES tab embedded" \
1627 "FUNNYNAMES \"quote embedded\"" \
1628 "FUNNYNAMES newline
1629embedded" 2>/dev/null
1630'
1631
Michael J Gruber5b0b5dd2012-07-26 15:39:56 +02001632test_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ögershausen742ae102018-04-30 08:35:19 +02001637 test -f "$aumlcdiar"
Michael J Gruber5b0b5dd2012-07-26 15:39:56 +02001638'
1639
Jeff King09feffb2012-11-14 16:33:40 -08001640test_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 Hamano6219bb22014-06-09 12:23:30 -07001646test_lazy_prereq EXPENSIVE '
1647 test -n "$GIT_TEST_LONG"
1648'
1649
Ævar Arnfjörð Bjarmason5b1fe6e2018-01-30 21:21:23 +00001650test_lazy_prereq EXPENSIVE_ON_WINDOWS '
1651 test_have_prereq EXPENSIVE || test_have_prereq !MINGW,!CYGWIN
1652'
1653
Junio C Hamanoe1ecd9e2014-06-09 13:54:25 -07001654test_lazy_prereq USR_BIN_TIME '
1655 test -x /usr/bin/time
1656'
1657
Jeff King1767c512015-01-16 04:16:49 -05001658test_lazy_prereq NOT_ROOT '
1659 uid=$(id -u) &&
1660 test "$uid" != 0
1661'
1662
Jonathan Tan63b747c2016-09-09 10:36:28 -07001663test_lazy_prereq JGIT '
Todd Zullingerabd0f282019-05-14 21:36:33 -04001664 jgit --version
Jonathan Tan63b747c2016-09-09 10:36:28 -07001665'
1666
Junio C Hamano719c3da2016-01-19 14:09:37 -08001667# 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ögershausenf400e512015-01-27 16:39:01 +01001678test_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 Hamano719c3da2016-01-19 14:09:37 -08001684 chmod -r SANETESTD.1/x &&
Torsten Bögershausenf400e512015-01-27 16:39:01 +01001685 chmod -rx SANETESTD.2 ||
SZEDER Gábor165293a2018-11-19 14:13:26 +01001686 BUG "cannot prepare SANETESTD"
Torsten Bögershausenf400e512015-01-27 16:39:01 +01001687
Junio C Hamano719c3da2016-01-19 14:09:37 -08001688 ! test -r SANETESTD.1/x &&
Torsten Bögershausenf400e512015-01-27 16:39:01 +01001689 ! 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ábor165293a2018-11-19 14:13:26 +01001694 BUG "cannot clean SANETESTD"
Torsten Bögershausenf400e512015-01-27 16:39:01 +01001695 return $status
1696'
Jeff Kingf838ce52013-03-10 21:31:47 -04001697
Johannes Schindelind98b2c52016-07-21 18:02:54 +02001698test FreeBSD != $uname_s || GIT_UNZIP=${GIT_UNZIP:-/usr/local/bin/unzip}
Jeff Kingf838ce52013-03-10 21:31:47 -04001699GIT_UNZIP=${GIT_UNZIP:-unzip}
1700test_lazy_prereq UNZIP '
1701 "$GIT_UNZIP" -v
1702 test $? -ne 127
1703'
Jeff King9a308de2015-03-13 00:53:07 -04001704
1705run_with_limited_cmdline () {
1706 (ulimit -s 128 && "$@")
1707}
1708
Ramsay Jones21dac1d2017-09-14 18:24:41 +01001709test_lazy_prereq CMDLINE_LIMIT '
Greg Priceddcfc7c2020-05-15 22:33:38 -07001710 test_have_prereq !HPPA,!MINGW,!CYGWIN &&
Ramsay Jones21dac1d2017-09-14 18:24:41 +01001711 run_with_limited_cmdline true
1712'
Jeff King6b9c38e2016-07-11 19:54:18 -04001713
Michael J Gruber4db464f2017-09-07 16:02:20 +02001714run_with_limited_stack () {
1715 (ulimit -s 128 && "$@")
1716}
1717
Ramsay Jones21dac1d2017-09-14 18:24:41 +01001718test_lazy_prereq ULIMIT_STACK_SIZE '
Greg Priceddcfc7c2020-05-15 22:33:38 -07001719 test_have_prereq !HPPA,!MINGW,!CYGWIN &&
Ramsay Jones21dac1d2017-09-14 18:24:41 +01001720 run_with_limited_stack true
1721'
Michael J Gruber4db464f2017-09-07 16:02:20 +02001722
Taylor Blaub30fdb42020-04-23 15:41:06 -06001723run_with_limited_open_files () {
1724 (ulimit -n 32 && "$@")
1725}
1726
1727test_lazy_prereq ULIMIT_FILE_DESCRIPTORS '
1728 test_have_prereq !MINGW,!CYGWIN &&
1729 run_with_limited_open_files true
1730'
1731
Jeff King6b9c38e2016-07-11 19:54:18 -04001732build_option () {
1733 git version --build-options |
1734 sed -ne "s/^$1: //p"
1735}
1736
Carlo Marcelo Arenas Belón970fa572021-11-02 15:46:06 +00001737test_lazy_prereq SIZE_T_IS_64BIT '
1738 test 8 -eq "$(build_option sizeof-size_t)"
1739'
1740
Jeff King6b9c38e2016-07-11 19:54:18 -04001741test_lazy_prereq LONG_IS_64BIT '
1742 test 8 -le "$(build_option sizeof-long)"
1743'
Johannes Schindelina07fb052017-04-20 22:52:13 +02001744
Nguyễn Thái Ngọc Duya801a7c2018-03-24 08:44:36 +01001745test_lazy_prereq TIME_IS_64BIT 'test-tool date is64bit'
1746test_lazy_prereq TIME_T_IS_64BIT 'test-tool date time_t-is64bit'
Jeff Kinge9184b02018-04-03 10:01:57 -04001747
1748test_lazy_prereq CURL '
1749 curl --version
1750'
brian m. carlsond16ab632018-05-13 02:24:11 +00001751
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).
1755test_lazy_prereq SHA1 '
brian m. carlsonc49fe072020-07-29 23:14:25 +00001756 case "$GIT_DEFAULT_HASH" in
1757 sha1) true ;;
1758 "") test $(git hash-object /dev/null) = e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 ;;
1759 *) false ;;
1760 esac
brian m. carlsond16ab632018-05-13 02:24:11 +00001761'
Johannes Schindelin11aad462018-10-31 13:02:02 -07001762
Ævar Arnfjörð Bjarmason7ccbea52022-06-14 17:40:07 +02001763test_lazy_prereq ADD_I_USE_BUILTIN '
1764 test_bool_env GIT_TEST_ADD_I_USE_BUILTIN true
1765'
1766
Derrick Stolee2fec6042020-09-11 17:49:18 +00001767# Ensure that no test accidentally triggers a Git command
Derrick Stolee31345d52020-11-24 04:16:42 +00001768# 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 Stolee2fec6042020-09-11 17:49:18 +00001771# to avoid errors.
Derrick Stolee31345d52020-11-24 04:16:42 +00001772GIT_TEST_MAINT_SCHEDULER="none:exit 1"
Jeff Hostetlerdd77cf62022-03-25 18:03:02 +00001773
1774# Does this platform support `git fsmonitor--daemon`
1775#
1776test_lazy_prereq FSMONITOR_DAEMON '
1777 git version --build-options >output &&
1778 grep "feature: fsmonitor--daemon" output
1779'