1# Test framework for git. See t/README for usage. 2# 3# Copyright (c) 2005 Junio C Hamano 4# 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/ . 17 18# 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 22 # We allow tests to override this, in case they want to run tests 23 # outside of t/, e.g. for running tests on the test library 24 # itself. 25 TEST_DIRECTORY=$(pwd) 26else 27 # ensure that TEST_DIRECTORY is an absolute path so that it 28 # is valid even if the current working directory is changed 29 TEST_DIRECTORY=$(cd "$TEST_DIRECTORY" && pwd) || exit 1 30fi 31if test -z "$TEST_OUTPUT_DIRECTORY" 32then 33 # Similarly, override this to store the test-results subdir 34 # elsewhere 35 TEST_OUTPUT_DIRECTORY=$TEST_DIRECTORY 36fi 37GIT_BUILD_DIR="$TEST_DIRECTORY"/.. 38 39# If we were built with ASAN, it may complain about leaks 40# of program-lifetime variables. Disable it by default to lower 41# the noise level. This needs to happen at the start of the script, 42# before we even do our "did we build git yet" check (since we don't 43# want that one to complain to stderr). 44: ${ASAN_OPTIONS=detect_leaks=0:abort_on_error=1} 45export ASAN_OPTIONS 46 47# If LSAN is in effect we _do_ want leak checking, but we still 48# want to abort so that we notice the problems. 49: ${LSAN_OPTIONS=abort_on_error=1} 50export LSAN_OPTIONS 51 52if test ! -f "$GIT_BUILD_DIR"/GIT-BUILD-OPTIONS 53then 54 echo >&2 'error: GIT-BUILD-OPTIONS missing (has Git been built?).' 55 exit 1 56fi 57. "$GIT_BUILD_DIR"/GIT-BUILD-OPTIONS 58export PERL_PATH SHELL_PATH 59 60################################################################ 61# It appears that people try to run tests without building... 62"${GIT_TEST_INSTALLED:-$GIT_BUILD_DIR}/git$X" >/dev/null 63if test $? != 1 64then 65 if test -n "$GIT_TEST_INSTALLED" 66 then 67 echo >&2 "error: there is no working Git at '$GIT_TEST_INSTALLED'" 68 else 69 echo >&2 'error: you do not seem to have built git yet.' 70 fi 71 exit 1 72fi 73 74# Parse options while taking care to leave $@ intact, so we will still 75# have all the original command line options when executing the test 76# script again for '--tee' and '--verbose-log' below. 77store_arg_to= 78prev_opt= 79for opt 80do 81 if test -n "$store_arg_to" 82 then 83 eval $store_arg_to=\$opt 84 store_arg_to= 85 prev_opt= 86 continue 87 fi 88 89 case "$opt" in 90 -d|--d|--de|--deb|--debu|--debug) 91 debug=t ;; 92 -i|--i|--im|--imm|--imme|--immed|--immedi|--immedia|--immediat|--immediate) 93 immediate=t ;; 94 -l|--l|--lo|--lon|--long|--long-|--long-t|--long-te|--long-tes|--long-test|--long-tests) 95 GIT_TEST_LONG=t; export GIT_TEST_LONG ;; 96 -r) 97 store_arg_to=run_list 98 ;; 99 --run=*) 100 run_list=${opt#--*=} ;; 101 -h|--h|--he|--hel|--help) 102 help=t ;; 103 -v|--v|--ve|--ver|--verb|--verbo|--verbos|--verbose) 104 verbose=t ;; 105 --verbose-only=*) 106 verbose_only=${opt#--*=} 107 ;; 108 -q|--q|--qu|--qui|--quie|--quiet) 109 # Ignore --quiet under a TAP::Harness. Saying how many tests 110 # passed without the ok/not ok details is always an error. 111 test -z "$HARNESS_ACTIVE" && quiet=t ;; 112 --with-dashes) 113 with_dashes=t ;; 114 --no-color) 115 color= ;; 116 --va|--val|--valg|--valgr|--valgri|--valgrin|--valgrind) 117 valgrind=memcheck 118 tee=t 119 ;; 120 --valgrind=*) 121 valgrind=${opt#--*=} 122 tee=t 123 ;; 124 --valgrind-only=*) 125 valgrind_only=${opt#--*=} 126 tee=t 127 ;; 128 --tee) 129 tee=t ;; 130 --root=*) 131 root=${opt#--*=} ;; 132 --chain-lint) 133 GIT_TEST_CHAIN_LINT=1 ;; 134 --no-chain-lint) 135 GIT_TEST_CHAIN_LINT=0 ;; 136 -x) 137 trace=t ;; 138 -V|--verbose-log) 139 verbose_log=t 140 tee=t 141 ;; 142 --stress) 143 stress=t ;; 144 --stress=*) 145 stress=${opt#--*=} 146 case "$stress" in 147 *[^0-9]*|0*|"") 148 echo "error: --stress=<N> requires the number of jobs to run" >&2 149 exit 1 150 ;; 151 *) # Good. 152 ;; 153 esac 154 ;; 155 --stress-limit=*) 156 stress_limit=${opt#--*=} 157 case "$stress_limit" in 158 *[^0-9]*|0*|"") 159 echo "error: --stress-limit=<N> requires the number of repetitions" >&2 160 exit 1 161 ;; 162 *) # Good. 163 ;; 164 esac 165 ;; 166 *) 167 echo "error: unknown test option '$opt'" >&2; exit 1 ;; 168 esac 169 170 prev_opt=$opt 171done 172if test -n "$store_arg_to" 173then 174 echo "error: $prev_opt requires an argument" >&2 175 exit 1 176fi 177 178if test -n "$valgrind_only" 179then 180 test -z "$valgrind" && valgrind=memcheck 181 test -z "$verbose" && verbose_only="$valgrind_only" 182elif test -n "$valgrind" 183then 184 test -z "$verbose_log" && verbose=t 185fi 186 187if test -n "$stress" 188then 189 verbose=t 190 trace=t 191 immediate=t 192fi 193 194TEST_STRESS_JOB_SFX="${GIT_TEST_STRESS_JOB_NR:+.stress-$GIT_TEST_STRESS_JOB_NR}" 195TEST_NAME="$(basename "$0" .sh)" 196TEST_RESULTS_DIR="$TEST_OUTPUT_DIRECTORY/test-results" 197TEST_RESULTS_BASE="$TEST_RESULTS_DIR/$TEST_NAME$TEST_STRESS_JOB_SFX" 198TRASH_DIRECTORY="trash directory.$TEST_NAME$TEST_STRESS_JOB_SFX" 199test -n "$root" && TRASH_DIRECTORY="$root/$TRASH_DIRECTORY" 200case "$TRASH_DIRECTORY" in 201/*) ;; # absolute path is good 202 *) TRASH_DIRECTORY="$TEST_OUTPUT_DIRECTORY/$TRASH_DIRECTORY" ;; 203esac 204 205# If --stress was passed, run this test repeatedly in several parallel loops. 206if test "$GIT_TEST_STRESS_STARTED" = "done" 207then 208 : # Don't stress test again. 209elif test -n "$stress" 210then 211 if test "$stress" != t 212 then 213 job_count=$stress 214 elif test -n "$GIT_TEST_STRESS_LOAD" 215 then 216 job_count="$GIT_TEST_STRESS_LOAD" 217 elif job_count=$(getconf _NPROCESSORS_ONLN 2>/dev/null) && 218 test -n "$job_count" 219 then 220 job_count=$((2 * $job_count)) 221 else 222 job_count=8 223 fi 224 225 mkdir -p "$TEST_RESULTS_DIR" 226 stressfail="$TEST_RESULTS_BASE.stress-failed" 227 rm -f "$stressfail" 228 229 stress_exit=0 230 trap ' 231 kill $job_pids 2>/dev/null 232 wait 233 stress_exit=1 234 ' TERM INT HUP 235 236 job_pids= 237 job_nr=0 238 while test $job_nr -lt "$job_count" 239 do 240 ( 241 GIT_TEST_STRESS_STARTED=done 242 GIT_TEST_STRESS_JOB_NR=$job_nr 243 export GIT_TEST_STRESS_STARTED GIT_TEST_STRESS_JOB_NR 244 245 trap ' 246 kill $test_pid 2>/dev/null 247 wait 248 exit 1 249 ' TERM INT 250 251 cnt=1 252 while ! test -e "$stressfail" && 253 { test -z "$stress_limit" || 254 test $cnt -le $stress_limit ; } 255 do 256 $TEST_SHELL_PATH "$0" "$@" >"$TEST_RESULTS_BASE.stress-$job_nr.out" 2>&1 & 257 test_pid=$! 258 259 if wait $test_pid 260 then 261 printf "OK %2d.%d\n" $GIT_TEST_STRESS_JOB_NR $cnt 262 else 263 echo $GIT_TEST_STRESS_JOB_NR >>"$stressfail" 264 printf "FAIL %2d.%d\n" $GIT_TEST_STRESS_JOB_NR $cnt 265 fi 266 cnt=$(($cnt + 1)) 267 done 268 ) & 269 job_pids="$job_pids $!" 270 job_nr=$(($job_nr + 1)) 271 done 272 273 wait 274 275 if test -f "$stressfail" 276 then 277 stress_exit=1 278 echo "Log(s) of failed test run(s):" 279 for failed_job_nr in $(sort -n "$stressfail") 280 do 281 echo "Contents of '$TEST_RESULTS_BASE.stress-$failed_job_nr.out':" 282 cat "$TEST_RESULTS_BASE.stress-$failed_job_nr.out" 283 done 284 rm -rf "$TRASH_DIRECTORY.stress-failed" 285 # Move the last one. 286 mv "$TRASH_DIRECTORY.stress-$failed_job_nr" "$TRASH_DIRECTORY.stress-failed" 287 fi 288 289 exit $stress_exit 290fi 291 292# if --tee was passed, write the output not only to the terminal, but 293# additionally to the file test-results/$BASENAME.out, too. 294if test "$GIT_TEST_TEE_STARTED" = "done" 295then 296 : # do not redirect again 297elif test -n "$tee" 298then 299 mkdir -p "$TEST_RESULTS_DIR" 300 301 # Make this filename available to the sub-process in case it is using 302 # --verbose-log. 303 GIT_TEST_TEE_OUTPUT_FILE=$TEST_RESULTS_BASE.out 304 export GIT_TEST_TEE_OUTPUT_FILE 305 306 # Truncate before calling "tee -a" to get rid of the results 307 # from any previous runs. 308 >"$GIT_TEST_TEE_OUTPUT_FILE" 309 310 (GIT_TEST_TEE_STARTED=done ${TEST_SHELL_PATH} "$0" "$@" 2>&1; 311 echo $? >"$TEST_RESULTS_BASE.exit") | tee -a "$GIT_TEST_TEE_OUTPUT_FILE" 312 test "$(cat "$TEST_RESULTS_BASE.exit")" = 0 313 exit 314fi 315 316if test -n "$trace" && test -n "$test_untraceable" 317then 318 # '-x' tracing requested, but this test script can't be reliably 319 # traced, unless it is run with a Bash version supporting 320 # BASH_XTRACEFD (introduced in Bash v4.1). 321 # 322 # Perform this version check _after_ the test script was 323 # potentially re-executed with $TEST_SHELL_PATH for '--tee' or 324 # '--verbose-log', so the right shell is checked and the 325 # warning is issued only once. 326 if test -n "$BASH_VERSION" && eval ' 327 test ${BASH_VERSINFO[0]} -gt 4 || { 328 test ${BASH_VERSINFO[0]} -eq 4 && 329 test ${BASH_VERSINFO[1]} -ge 1 330 } 331 ' 332 then 333 : Executed by a Bash version supporting BASH_XTRACEFD. Good. 334 else 335 echo >&2 "warning: ignoring -x; '$0' is untraceable without BASH_XTRACEFD" 336 trace= 337 fi 338fi 339if test -n "$trace" && test -z "$verbose_log" 340then 341 verbose=t 342fi 343 344# For repeatability, reset the environment to known value. 345# TERM is sanitized below, after saving color control sequences. 346LANG=C 347LC_ALL=C 348PAGER=cat 349TZ=UTC 350export LANG LC_ALL PAGER TZ 351EDITOR=: 352 353# GIT_TEST_GETTEXT_POISON should not influence git commands executed 354# during initialization of test-lib and the test repo. Back it up, 355# unset and then restore after initialization is finished. 356if test -n "$GIT_TEST_GETTEXT_POISON" 357then 358 GIT_TEST_GETTEXT_POISON_ORIG=$GIT_TEST_GETTEXT_POISON 359 unset GIT_TEST_GETTEXT_POISON 360fi 361 362# A call to "unset" with no arguments causes at least Solaris 10 363# /usr/xpg4/bin/sh and /bin/ksh to bail out. So keep the unsets 364# deriving from the command substitution clustered with the other 365# ones. 366unset VISUAL EMAIL LANGUAGE COLUMNS $("$PERL_PATH" -e ' 367 my @env = keys %ENV; 368 my $ok = join("|", qw( 369 TRACE 370 DEBUG 371 TEST 372 .*_TEST 373 PROVE 374 VALGRIND 375 UNZIP 376 PERF_ 377 CURL_VERBOSE 378 TRACE_CURL 379 )); 380 my @vars = grep(/^GIT_/ && !/^GIT_($ok)/o, @env); 381 print join("\n", @vars); 382') 383unset XDG_CACHE_HOME 384unset XDG_CONFIG_HOME 385unset GITPERLLIB 386GIT_AUTHOR_EMAIL=author@example.com 387GIT_AUTHOR_NAME='A U Thor' 388GIT_COMMITTER_EMAIL=committer@example.com 389GIT_COMMITTER_NAME='C O Mitter' 390GIT_MERGE_VERBOSITY=5 391GIT_MERGE_AUTOEDIT=no 392export GIT_MERGE_VERBOSITY GIT_MERGE_AUTOEDIT 393export GIT_AUTHOR_EMAIL GIT_AUTHOR_NAME 394export GIT_COMMITTER_EMAIL GIT_COMMITTER_NAME 395export EDITOR 396 397# Tests using GIT_TRACE typically don't want <timestamp> <file>:<line> output 398GIT_TRACE_BARE=1 399export GIT_TRACE_BARE 400 401check_var_migration () { 402 # the warnings and hints given from this helper depends 403 # on end-user settings, which will disrupt the self-test 404 # done on the test framework itself. 405 case "$GIT_TEST_FRAMEWORK_SELFTEST" in 406 t) return ;; 407 esac 408 409 old_name=$1 new_name=$2 410 eval "old_isset=\${${old_name}:+isset}" 411 eval "new_isset=\${${new_name}:+isset}" 412 413 case "$old_isset,$new_isset" in 414 isset,) 415 echo >&2 "warning: $old_name is now $new_name" 416 echo >&2 "hint: set $new_name too during the transition period" 417 eval "$new_name=\$$old_name" 418 ;; 419 isset,isset) 420 # do this later 421 # echo >&2 "warning: $old_name is now $new_name" 422 # echo >&2 "hint: remove $old_name" 423 ;; 424 esac 425} 426 427check_var_migration GIT_FSMONITOR_TEST GIT_TEST_FSMONITOR 428check_var_migration TEST_GIT_INDEX_VERSION GIT_TEST_INDEX_VERSION 429check_var_migration GIT_FORCE_PRELOAD_TEST GIT_TEST_PRELOAD_INDEX 430 431# Use specific version of the index file format 432if test -n "${GIT_TEST_INDEX_VERSION:+isset}" 433then 434 GIT_INDEX_VERSION="$GIT_TEST_INDEX_VERSION" 435 export GIT_INDEX_VERSION 436fi 437 438# Add libc MALLOC and MALLOC_PERTURB test 439# only if we are not executing the test with valgrind 440if test -n "$valgrind" || 441 test -n "$TEST_NO_MALLOC_CHECK" 442then 443 setup_malloc_check () { 444 : nothing 445 } 446 teardown_malloc_check () { 447 : nothing 448 } 449else 450 setup_malloc_check () { 451 MALLOC_CHECK_=3 MALLOC_PERTURB_=165 452 export MALLOC_CHECK_ MALLOC_PERTURB_ 453 } 454 teardown_malloc_check () { 455 unset MALLOC_CHECK_ MALLOC_PERTURB_ 456 } 457fi 458 459# Protect ourselves from common misconfiguration to export 460# CDPATH into the environment 461unset CDPATH 462 463unset GREP_OPTIONS 464unset UNZIP 465 466case $(echo $GIT_TRACE |tr "[A-Z]" "[a-z]") in 4671|2|true) 468 GIT_TRACE=4 469 ;; 470esac 471 472# Convenience 473# 474# A regexp to match 5, 35 and 40 hexdigits 475_x05='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]' 476_x35="$_x05$_x05$_x05$_x05$_x05$_x05$_x05" 477_x40="$_x35$_x05" 478 479# Zero SHA-1 480_z40=0000000000000000000000000000000000000000 481 482OID_REGEX="$_x40" 483ZERO_OID=$_z40 484EMPTY_TREE=4b825dc642cb6eb9a060e54bf8d69288fbee4904 485EMPTY_BLOB=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 486 487# Line feed 488LF=' 489' 490 491# UTF-8 ZERO WIDTH NON-JOINER, which HFS+ ignores 492# when case-folding filenames 493u200c=$(printf '\342\200\214') 494 495export _x05 _x35 _x40 _z40 LF u200c EMPTY_TREE EMPTY_BLOB ZERO_OID OID_REGEX 496 497# Each test should start with something like this, after copyright notices: 498# 499# test_description='Description of this test... 500# This test checks if command xyzzy does the right thing... 501# ' 502# . ./test-lib.sh 503test "x$TERM" != "xdumb" && ( 504 test -t 1 && 505 tput bold >/dev/null 2>&1 && 506 tput setaf 1 >/dev/null 2>&1 && 507 tput sgr0 >/dev/null 2>&1 508 ) && 509 color=t 510 511if test -n "$color" 512then 513 # Save the color control sequences now rather than run tput 514 # each time say_color() is called. This is done for two 515 # reasons: 516 # * TERM will be changed to dumb 517 # * HOME will be changed to a temporary directory and tput 518 # might need to read ~/.terminfo from the original HOME 519 # directory to get the control sequences 520 # Note: This approach assumes the control sequences don't end 521 # in a newline for any terminal of interest (command 522 # substitutions strip trailing newlines). Given that most 523 # (all?) terminals in common use are related to ECMA-48, this 524 # shouldn't be a problem. 525 say_color_error=$(tput bold; tput setaf 1) # bold red 526 say_color_skip=$(tput setaf 4) # blue 527 say_color_warn=$(tput setaf 3) # brown/yellow 528 say_color_pass=$(tput setaf 2) # green 529 say_color_info=$(tput setaf 6) # cyan 530 say_color_reset=$(tput sgr0) 531 say_color_="" # no formatting for normal text 532 say_color () { 533 test -z "$1" && test -n "$quiet" && return 534 eval "say_color_color=\$say_color_$1" 535 shift 536 printf "%s\\n" "$say_color_color$*$say_color_reset" 537 } 538else 539 say_color() { 540 test -z "$1" && test -n "$quiet" && return 541 shift 542 printf "%s\n" "$*" 543 } 544fi 545 546TERM=dumb 547export TERM 548 549error () { 550 say_color error "error: $*" 551 GIT_EXIT_OK=t 552 exit 1 553} 554 555BUG () { 556 error >&7 "bug in the test script: $*" 557} 558 559say () { 560 say_color info "$*" 561} 562 563if test -n "$HARNESS_ACTIVE" 564then 565 if test "$verbose" = t || test -n "$verbose_only" 566 then 567 printf 'Bail out! %s\n' \ 568 'verbose mode forbidden under TAP harness; try --verbose-log' 569 exit 1 570 fi 571fi 572 573test "${test_description}" != "" || 574error "Test script did not set test_description." 575 576if test "$help" = "t" 577then 578 printf '%s\n' "$test_description" 579 exit 0 580fi 581 582exec 5>&1 583exec 6<&0 584exec 7>&2 585if test "$verbose_log" = "t" 586then 587 exec 3>>"$GIT_TEST_TEE_OUTPUT_FILE" 4>&3 588elif test "$verbose" = "t" 589then 590 exec 4>&2 3>&1 591else 592 exec 4>/dev/null 3>/dev/null 593fi 594 595# Send any "-x" output directly to stderr to avoid polluting tests 596# which capture stderr. We can do this unconditionally since it 597# has no effect if tracing isn't turned on. 598# 599# Note that this sets up the trace fd as soon as we assign the variable, so it 600# must come after the creation of descriptor 4 above. Likewise, we must never 601# unset this, as it has the side effect of closing descriptor 4, which we 602# use to show verbose tests to the user. 603# 604# Note also that we don't need or want to export it. The tracing is local to 605# this shell, and we would not want to influence any shells we exec. 606BASH_XTRACEFD=4 607 608test_failure=0 609test_count=0 610test_fixed=0 611test_broken=0 612test_success=0 613 614test_external_has_tap=0 615 616die () { 617 code=$? 618 if test -n "$GIT_EXIT_OK" 619 then 620 exit $code 621 else 622 echo >&5 "FATAL: Unexpected exit with code $code" 623 exit 1 624 fi 625} 626 627GIT_EXIT_OK= 628trap 'die' EXIT 629trap 'exit $?' INT TERM HUP 630 631# The user-facing functions are loaded from a separate file so that 632# test_perf subshells can have them too 633. "$TEST_DIRECTORY/test-lib-functions.sh" 634 635# You are not expected to call test_ok_ and test_failure_ directly, use 636# the test_expect_* functions instead. 637 638test_ok_ () { 639 test_success=$(($test_success + 1)) 640 say_color "" "ok $test_count - $@" 641} 642 643test_failure_ () { 644 test_failure=$(($test_failure + 1)) 645 say_color error "not ok $test_count - $1" 646 shift 647 printf '%s\n' "$*" | sed -e 's/^/# /' 648 test "$immediate" = "" || { GIT_EXIT_OK=t; exit 1; } 649} 650 651test_known_broken_ok_ () { 652 test_fixed=$(($test_fixed+1)) 653 say_color error "ok $test_count - $@ # TODO known breakage vanished" 654} 655 656test_known_broken_failure_ () { 657 test_broken=$(($test_broken+1)) 658 say_color warn "not ok $test_count - $@ # TODO known breakage" 659} 660 661test_debug () { 662 test "$debug" = "" || eval "$1" 663} 664 665match_pattern_list () { 666 arg="$1" 667 shift 668 test -z "$*" && return 1 669 for pattern_ 670 do 671 case "$arg" in 672 $pattern_) 673 return 0 674 esac 675 done 676 return 1 677} 678 679match_test_selector_list () { 680 title="$1" 681 shift 682 arg="$1" 683 shift 684 test -z "$1" && return 0 685 686 # Both commas and whitespace are accepted as separators. 687 OLDIFS=$IFS 688 IFS=' ,' 689 set -- $1 690 IFS=$OLDIFS 691 692 # If the first selector is negative we include by default. 693 include= 694 case "$1" in 695 !*) include=t ;; 696 esac 697 698 for selector 699 do 700 orig_selector=$selector 701 702 positive=t 703 case "$selector" in 704 !*) 705 positive= 706 selector=${selector##?} 707 ;; 708 esac 709 710 test -z "$selector" && continue 711 712 case "$selector" in 713 *-*) 714 if expr "z${selector%%-*}" : "z[0-9]*[^0-9]" >/dev/null 715 then 716 echo "error: $title: invalid non-numeric in range" \ 717 "start: '$orig_selector'" >&2 718 exit 1 719 fi 720 if expr "z${selector#*-}" : "z[0-9]*[^0-9]" >/dev/null 721 then 722 echo "error: $title: invalid non-numeric in range" \ 723 "end: '$orig_selector'" >&2 724 exit 1 725 fi 726 ;; 727 *) 728 if expr "z$selector" : "z[0-9]*[^0-9]" >/dev/null 729 then 730 echo "error: $title: invalid non-numeric in test" \ 731 "selector: '$orig_selector'" >&2 732 exit 1 733 fi 734 esac 735 736 # Short cut for "obvious" cases 737 test -z "$include" && test -z "$positive" && continue 738 test -n "$include" && test -n "$positive" && continue 739 740 case "$selector" in 741 -*) 742 if test $arg -le ${selector#-} 743 then 744 include=$positive 745 fi 746 ;; 747 *-) 748 if test $arg -ge ${selector%-} 749 then 750 include=$positive 751 fi 752 ;; 753 *-*) 754 if test ${selector%%-*} -le $arg \ 755 && test $arg -le ${selector#*-} 756 then 757 include=$positive 758 fi 759 ;; 760 *) 761 if test $arg -eq $selector 762 then 763 include=$positive 764 fi 765 ;; 766 esac 767 done 768 769 test -n "$include" 770} 771 772maybe_teardown_verbose () { 773 test -z "$verbose_only" && return 774 exec 4>/dev/null 3>/dev/null 775 verbose= 776} 777 778last_verbose=t 779maybe_setup_verbose () { 780 test -z "$verbose_only" && return 781 if match_pattern_list $test_count $verbose_only 782 then 783 exec 4>&2 3>&1 784 # Emit a delimiting blank line when going from 785 # non-verbose to verbose. Within verbose mode the 786 # delimiter is printed by test_expect_*. The choice 787 # of the initial $last_verbose is such that before 788 # test 1, we do not print it. 789 test -z "$last_verbose" && echo >&3 "" 790 verbose=t 791 else 792 exec 4>/dev/null 3>/dev/null 793 verbose= 794 fi 795 last_verbose=$verbose 796} 797 798maybe_teardown_valgrind () { 799 test -z "$GIT_VALGRIND" && return 800 GIT_VALGRIND_ENABLED= 801} 802 803maybe_setup_valgrind () { 804 test -z "$GIT_VALGRIND" && return 805 if test -z "$valgrind_only" 806 then 807 GIT_VALGRIND_ENABLED=t 808 return 809 fi 810 GIT_VALGRIND_ENABLED= 811 if match_pattern_list $test_count $valgrind_only 812 then 813 GIT_VALGRIND_ENABLED=t 814 fi 815} 816 817want_trace () { 818 test "$trace" = t && { 819 test "$verbose" = t || test "$verbose_log" = t 820 } 821} 822 823# This is a separate function because some tests use 824# "return" to end a test_expect_success block early 825# (and we want to make sure we run any cleanup like 826# "set +x"). 827test_eval_inner_ () { 828 # Do not add anything extra (including LF) after '$*' 829 eval " 830 want_trace && set -x 831 $*" 832} 833 834test_eval_ () { 835 # If "-x" tracing is in effect, then we want to avoid polluting stderr 836 # with non-test commands. But once in "set -x" mode, we cannot prevent 837 # the shell from printing the "set +x" to turn it off (nor the saving 838 # of $? before that). But we can make sure that the output goes to 839 # /dev/null. 840 # 841 # There are a few subtleties here: 842 # 843 # - we have to redirect descriptor 4 in addition to 2, to cover 844 # BASH_XTRACEFD 845 # 846 # - the actual eval has to come before the redirection block (since 847 # it needs to see descriptor 4 to set up its stderr) 848 # 849 # - likewise, any error message we print must be outside the block to 850 # access descriptor 4 851 # 852 # - checking $? has to come immediately after the eval, but it must 853 # be _inside_ the block to avoid polluting the "set -x" output 854 # 855 856 test_eval_inner_ "$@" </dev/null >&3 2>&4 857 { 858 test_eval_ret_=$? 859 if want_trace 860 then 861 set +x 862 fi 863 } 2>/dev/null 4>&2 864 865 if test "$test_eval_ret_" != 0 && want_trace 866 then 867 say_color error >&4 "error: last command exited with \$?=$test_eval_ret_" 868 fi 869 return $test_eval_ret_ 870} 871 872test_run_ () { 873 test_cleanup=: 874 expecting_failure=$2 875 876 if test "${GIT_TEST_CHAIN_LINT:-1}" != 0; then 877 # turn off tracing for this test-eval, as it simply creates 878 # confusing noise in the "-x" output 879 trace_tmp=$trace 880 trace= 881 # 117 is magic because it is unlikely to match the exit 882 # code of other programs 883 if $(printf '%s\n' "$1" | sed -f "$GIT_BUILD_DIR/t/chainlint.sed" | grep -q '?![A-Z][A-Z]*?!') || 884 test "OK-117" != "$(test_eval_ "(exit 117) && $1${LF}${LF}echo OK-\$?" 3>&1)" 885 then 886 BUG "broken &&-chain or run-away HERE-DOC: $1" 887 fi 888 trace=$trace_tmp 889 fi 890 891 setup_malloc_check 892 test_eval_ "$1" 893 eval_ret=$? 894 teardown_malloc_check 895 896 if test -z "$immediate" || test $eval_ret = 0 || 897 test -n "$expecting_failure" && test "$test_cleanup" != ":" 898 then 899 setup_malloc_check 900 test_eval_ "$test_cleanup" 901 teardown_malloc_check 902 fi 903 if test "$verbose" = "t" && test -n "$HARNESS_ACTIVE" 904 then 905 echo "" 906 fi 907 return "$eval_ret" 908} 909 910test_start_ () { 911 test_count=$(($test_count+1)) 912 maybe_setup_verbose 913 maybe_setup_valgrind 914} 915 916test_finish_ () { 917 echo >&3 "" 918 maybe_teardown_valgrind 919 maybe_teardown_verbose 920} 921 922test_skip () { 923 to_skip= 924 skipped_reason= 925 if match_pattern_list $this_test.$test_count $GIT_SKIP_TESTS 926 then 927 to_skip=t 928 skipped_reason="GIT_SKIP_TESTS" 929 fi 930 if test -z "$to_skip" && test -n "$test_prereq" && 931 ! test_have_prereq "$test_prereq" 932 then 933 to_skip=t 934 935 of_prereq= 936 if test "$missing_prereq" != "$test_prereq" 937 then 938 of_prereq=" of $test_prereq" 939 fi 940 skipped_reason="missing $missing_prereq${of_prereq}" 941 fi 942 if test -z "$to_skip" && test -n "$run_list" && 943 ! match_test_selector_list '--run' $test_count "$run_list" 944 then 945 to_skip=t 946 skipped_reason="--run" 947 fi 948 949 case "$to_skip" in 950 t) 951 say_color skip >&3 "skipping test: $@" 952 say_color skip "ok $test_count # skip $1 ($skipped_reason)" 953 : true 954 ;; 955 *) 956 false 957 ;; 958 esac 959} 960 961# stub; perf-lib overrides it 962test_at_end_hook_ () { 963 : 964} 965 966test_done () { 967 GIT_EXIT_OK=t 968 969 if test -z "$HARNESS_ACTIVE" 970 then 971 mkdir -p "$TEST_RESULTS_DIR" 972 973 cat >"$TEST_RESULTS_BASE.counts" <<-EOF 974 total $test_count 975 success $test_success 976 fixed $test_fixed 977 broken $test_broken 978 failed $test_failure 979 980 EOF 981 fi 982 983 if test "$test_fixed" != 0 984 then 985 say_color error "# $test_fixed known breakage(s) vanished; please update test(s)" 986 fi 987 if test "$test_broken" != 0 988 then 989 say_color warn "# still have $test_broken known breakage(s)" 990 fi 991 if test "$test_broken" != 0 || test "$test_fixed" != 0 992 then 993 test_remaining=$(( $test_count - $test_broken - $test_fixed )) 994 msg="remaining $test_remaining test(s)" 995 else 996 test_remaining=$test_count 997 msg="$test_count test(s)" 998 fi 999 case "$test_failure" in1000 0)1001 if test $test_external_has_tap -eq 01002 then1003 if test $test_remaining -gt 01004 then1005 say_color pass "# passed all $msg"1006 fi10071008 # Maybe print SKIP message1009 test -z "$skip_all" || skip_all="# SKIP $skip_all"1010 case "$test_count" in1011 0)1012 say "1..$test_count${skip_all:+ $skip_all}"1013 ;;1014 *)1015 test -z "$skip_all" ||1016 say_color warn "$skip_all"1017 say "1..$test_count"1018 ;;1019 esac1020 fi10211022 if test -z "$debug"1023 then1024 test -d "$TRASH_DIRECTORY" ||1025 error "Tests passed but trash directory already removed before test cleanup; aborting"10261027 cd "$TRASH_DIRECTORY/.." &&1028 rm -fr "$TRASH_DIRECTORY" ||1029 error "Tests passed but test cleanup failed; aborting"1030 fi1031 test_at_end_hook_10321033 exit 0 ;;10341035 *)1036 if test $test_external_has_tap -eq 01037 then1038 say_color error "# failed $test_failure among $msg"1039 say "1..$test_count"1040 fi10411042 exit 1 ;;10431044 esac1045}10461047if test -n "$valgrind"1048then1049 make_symlink () {1050 test -h "$2" &&1051 test "$1" = "$(readlink "$2")" || {1052 # be super paranoid1053 if mkdir "$2".lock1054 then1055 rm -f "$2" &&1056 ln -s "$1" "$2" &&1057 rm -r "$2".lock1058 else1059 while test -d "$2".lock1060 do1061 say "Waiting for lock on $2."1062 sleep 11063 done1064 fi1065 }1066 }10671068 make_valgrind_symlink () {1069 # handle only executables, unless they are shell libraries that1070 # need to be in the exec-path.1071 test -x "$1" ||1072 test "# " = "$(test_copy_bytes 2 <"$1")" ||1073 return;10741075 base=$(basename "$1")1076 case "$base" in1077 test-*)1078 symlink_target="$GIT_BUILD_DIR/t/helper/$base"1079 ;;1080 *)1081 symlink_target="$GIT_BUILD_DIR/$base"1082 ;;1083 esac1084 # do not override scripts1085 if test -x "$symlink_target" &&1086 test ! -d "$symlink_target" &&1087 test "#!" != "$(test_copy_bytes 2 <"$symlink_target")"1088 then1089 symlink_target=../valgrind.sh1090 fi1091 case "$base" in1092 *.sh|*.perl)1093 symlink_target=../unprocessed-script1094 esac1095 # create the link, or replace it if it is out of date1096 make_symlink "$symlink_target" "$GIT_VALGRIND/bin/$base" || exit1097 }10981099 # override all git executables in TEST_DIRECTORY/..1100 GIT_VALGRIND=$TEST_DIRECTORY/valgrind1101 mkdir -p "$GIT_VALGRIND"/bin1102 for file in $GIT_BUILD_DIR/git* $GIT_BUILD_DIR/t/helper/test-*1103 do1104 make_valgrind_symlink $file1105 done1106 # special-case the mergetools loadables1107 make_symlink "$GIT_BUILD_DIR"/mergetools "$GIT_VALGRIND/bin/mergetools"1108 OLDIFS=$IFS1109 IFS=:1110 for path in $PATH1111 do1112 ls "$path"/git-* 2> /dev/null |1113 while read file1114 do1115 make_valgrind_symlink "$file"1116 done1117 done1118 IFS=$OLDIFS1119 PATH=$GIT_VALGRIND/bin:$PATH1120 GIT_EXEC_PATH=$GIT_VALGRIND/bin1121 export GIT_VALGRIND1122 GIT_VALGRIND_MODE="$valgrind"1123 export GIT_VALGRIND_MODE1124 GIT_VALGRIND_ENABLED=t1125 test -n "$valgrind_only" && GIT_VALGRIND_ENABLED=1126 export GIT_VALGRIND_ENABLED1127elif test -n "$GIT_TEST_INSTALLED"1128then1129 GIT_EXEC_PATH=$($GIT_TEST_INSTALLED/git --exec-path) ||1130 error "Cannot run git from $GIT_TEST_INSTALLED."1131 PATH=$GIT_TEST_INSTALLED:$GIT_BUILD_DIR/t/helper:$PATH1132 GIT_EXEC_PATH=${GIT_TEST_EXEC_PATH:-$GIT_EXEC_PATH}1133else # normal case, use ../bin-wrappers only unless $with_dashes:1134 git_bin_dir="$GIT_BUILD_DIR/bin-wrappers"1135 if ! test -x "$git_bin_dir/git"1136 then1137 if test -z "$with_dashes"1138 then1139 say "$git_bin_dir/git is not executable; using GIT_EXEC_PATH"1140 fi1141 with_dashes=t1142 fi1143 PATH="$git_bin_dir:$PATH"1144 GIT_EXEC_PATH=$GIT_BUILD_DIR1145 if test -n "$with_dashes"1146 then1147 PATH="$GIT_BUILD_DIR:$PATH"1148 fi1149fi1150GIT_TEMPLATE_DIR="$GIT_BUILD_DIR"/templates/blt1151GIT_CONFIG_NOSYSTEM=11152GIT_ATTR_NOSYSTEM=11153export PATH GIT_EXEC_PATH GIT_TEMPLATE_DIR GIT_CONFIG_NOSYSTEM GIT_ATTR_NOSYSTEM11541155if test -z "$GIT_TEST_CMP"1156then1157 if test -n "$GIT_TEST_CMP_USE_COPIED_CONTEXT"1158 then1159 GIT_TEST_CMP="$DIFF -c"1160 else1161 GIT_TEST_CMP="$DIFF -u"1162 fi1163fi11641165GITPERLLIB="$GIT_BUILD_DIR"/perl/build/lib1166export GITPERLLIB1167test -d "$GIT_BUILD_DIR"/templates/blt || {1168 error "You haven't built things yet, have you?"1169}11701171if ! test -x "$GIT_BUILD_DIR"/t/helper/test-tool1172then1173 echo >&2 'You need to build test-tool:'1174 echo >&2 'Run "make t/helper/test-tool" in the source (toplevel) directory'1175 exit 11176fi11771178# Test repository1179rm -fr "$TRASH_DIRECTORY" || {1180 GIT_EXIT_OK=t1181 echo >&5 "FATAL: Cannot prepare test area"1182 exit 11183}11841185HOME="$TRASH_DIRECTORY"1186GNUPGHOME="$HOME/gnupg-home-not-used"1187export HOME GNUPGHOME11881189if test -z "$TEST_NO_CREATE_REPO"1190then1191 test_create_repo "$TRASH_DIRECTORY"1192else1193 mkdir -p "$TRASH_DIRECTORY"1194fi1195# Use -P to resolve symlinks in our working directory so that the cwd1196# in subprocesses like git equals our $PWD (for pathname comparisons).1197cd -P "$TRASH_DIRECTORY" || exit 111981199this_test=${0##*/}1200this_test=${this_test%%-*}1201if match_pattern_list "$this_test" $GIT_SKIP_TESTS1202then1203 say_color info >&3 "skipping test $this_test altogether"1204 skip_all="skip all tests in $this_test"1205 test_done1206fi12071208# Provide an implementation of the 'yes' utility1209yes () {1210 if test $# = 01211 then1212 y=y1213 else1214 y="$*"1215 fi12161217 i=01218 while test $i -lt 991219 do1220 echo "$y"1221 i=$(($i+1))1222 done1223}12241225# Fix some commands on Windows1226uname_s=$(uname -s)1227case $uname_s in1228*MINGW*)1229 # Windows has its own (incompatible) sort and find1230 sort () {1231 /usr/bin/sort "$@"1232 }1233 find () {1234 /usr/bin/find "$@"1235 }1236 # git sees Windows-style pwd1237 pwd () {1238 builtin pwd -W1239 }1240 # no POSIX permissions1241 # backslashes in pathspec are converted to '/'1242 # exec does not inherit the PID1243 test_set_prereq MINGW1244 test_set_prereq NATIVE_CRLF1245 test_set_prereq SED_STRIPS_CR1246 test_set_prereq GREP_STRIPS_CR1247 GIT_TEST_CMP=mingw_test_cmp1248 ;;1249*CYGWIN*)1250 test_set_prereq POSIXPERM1251 test_set_prereq EXECKEEPSPID1252 test_set_prereq CYGWIN1253 test_set_prereq SED_STRIPS_CR1254 test_set_prereq GREP_STRIPS_CR1255 ;;1256*)1257 test_set_prereq POSIXPERM1258 test_set_prereq BSLASHPSPEC1259 test_set_prereq EXECKEEPSPID1260 ;;1261esac12621263( COLUMNS=1 && test $COLUMNS = 1 ) && test_set_prereq COLUMNS_CAN_BE_11264test -z "$NO_PERL" && test_set_prereq PERL1265test -z "$NO_PTHREADS" && test_set_prereq PTHREADS1266test -z "$NO_PYTHON" && test_set_prereq PYTHON1267test -n "$USE_LIBPCRE1$USE_LIBPCRE2" && test_set_prereq PCRE1268test -n "$USE_LIBPCRE1" && test_set_prereq LIBPCRE11269test -n "$USE_LIBPCRE2" && test_set_prereq LIBPCRE21270test -z "$NO_GETTEXT" && test_set_prereq GETTEXT12711272if test -n "$GIT_TEST_GETTEXT_POISON_ORIG"1273then1274 GIT_TEST_GETTEXT_POISON=$GIT_TEST_GETTEXT_POISON_ORIG1275 unset GIT_TEST_GETTEXT_POISON_ORIG1276fi12771278# Can we rely on git's output in the C locale?1279if test -z "$GIT_TEST_GETTEXT_POISON"1280then1281 test_set_prereq C_LOCALE_OUTPUT1282fi12831284if test -z "$GIT_TEST_CHECK_CACHE_TREE"1285then1286 GIT_TEST_CHECK_CACHE_TREE=true1287 export GIT_TEST_CHECK_CACHE_TREE1288fi12891290test_lazy_prereq PIPE '1291 # test whether the filesystem supports FIFOs1292 test_have_prereq !MINGW,!CYGWIN &&1293 rm -f testfifo && mkfifo testfifo1294'12951296test_lazy_prereq SYMLINKS '1297 # test whether the filesystem supports symbolic links1298 ln -s x y && test -h y1299'13001301test_lazy_prereq FILEMODE '1302 test "$(git config --bool core.filemode)" = true1303'13041305test_lazy_prereq CASE_INSENSITIVE_FS '1306 echo good >CamelCase &&1307 echo bad >camelcase &&1308 test "$(cat CamelCase)" != good1309'13101311test_lazy_prereq FUNNYNAMES '1312 test_have_prereq !MINGW &&1313 touch -- \1314 "FUNNYNAMES tab embedded" \1315 "FUNNYNAMES \"quote embedded\"" \1316 "FUNNYNAMES newline1317embedded" 2>/dev/null &&1318 rm -- \1319 "FUNNYNAMES tab embedded" \1320 "FUNNYNAMES \"quote embedded\"" \1321 "FUNNYNAMES newline1322embedded" 2>/dev/null1323'13241325test_lazy_prereq UTF8_NFD_TO_NFC '1326 # check whether FS converts nfd unicode to nfc1327 auml=$(printf "\303\244")1328 aumlcdiar=$(printf "\141\314\210")1329 >"$auml" &&1330 test -f "$aumlcdiar"1331'13321333test_lazy_prereq AUTOIDENT '1334 sane_unset GIT_AUTHOR_NAME &&1335 sane_unset GIT_AUTHOR_EMAIL &&1336 git var GIT_AUTHOR_IDENT1337'13381339test_lazy_prereq EXPENSIVE '1340 test -n "$GIT_TEST_LONG"1341'13421343test_lazy_prereq EXPENSIVE_ON_WINDOWS '1344 test_have_prereq EXPENSIVE || test_have_prereq !MINGW,!CYGWIN1345'13461347test_lazy_prereq USR_BIN_TIME '1348 test -x /usr/bin/time1349'13501351test_lazy_prereq NOT_ROOT '1352 uid=$(id -u) &&1353 test "$uid" != 01354'13551356test_lazy_prereq JGIT '1357 type jgit1358'13591360# SANITY is about "can you correctly predict what the filesystem would1361# do by only looking at the permission bits of the files and1362# directories?" A typical example of !SANITY is running the test1363# suite as root, where a test may expect "chmod -r file && cat file"1364# to fail because file is supposed to be unreadable after a successful1365# chmod. In an environment (i.e. combination of what filesystem is1366# being used and who is running the tests) that lacks SANITY, you may1367# be able to delete or create a file when the containing directory1368# doesn't have write permissions, or access a file even if the1369# containing directory doesn't have read or execute permissions.13701371test_lazy_prereq SANITY '1372 mkdir SANETESTD.1 SANETESTD.2 &&13731374 chmod +w SANETESTD.1 SANETESTD.2 &&1375 >SANETESTD.1/x 2>SANETESTD.2/x &&1376 chmod -w SANETESTD.1 &&1377 chmod -r SANETESTD.1/x &&1378 chmod -rx SANETESTD.2 ||1379 BUG "cannot prepare SANETESTD"13801381 ! test -r SANETESTD.1/x &&1382 ! rm SANETESTD.1/x && ! test -f SANETESTD.2/x1383 status=$?13841385 chmod +rwx SANETESTD.1 SANETESTD.2 &&1386 rm -rf SANETESTD.1 SANETESTD.2 ||1387 BUG "cannot clean SANETESTD"1388 return $status1389'13901391test FreeBSD != $uname_s || GIT_UNZIP=${GIT_UNZIP:-/usr/local/bin/unzip}1392GIT_UNZIP=${GIT_UNZIP:-unzip}1393test_lazy_prereq UNZIP '1394 "$GIT_UNZIP" -v1395 test $? -ne 1271396'13971398run_with_limited_cmdline () {1399 (ulimit -s 128 && "$@")1400}14011402test_lazy_prereq CMDLINE_LIMIT '1403 test_have_prereq !MINGW,!CYGWIN &&1404 run_with_limited_cmdline true1405'14061407run_with_limited_stack () {1408 (ulimit -s 128 && "$@")1409}14101411test_lazy_prereq ULIMIT_STACK_SIZE '1412 test_have_prereq !MINGW,!CYGWIN &&1413 run_with_limited_stack true1414'14151416build_option () {1417 git version --build-options |1418 sed -ne "s/^$1: //p"1419}14201421test_lazy_prereq LONG_IS_64BIT '1422 test 8 -le "$(build_option sizeof-long)"1423'14241425test_lazy_prereq TIME_IS_64BIT 'test-tool date is64bit'1426test_lazy_prereq TIME_T_IS_64BIT 'test-tool date time_t-is64bit'14271428test_lazy_prereq CURL '1429 curl --version1430'14311432# SHA1 is a test if the hash algorithm in use is SHA-1. This is both for tests1433# which will not work with other hash algorithms and tests that work but don't1434# test anything meaningful (e.g. special values which cause short collisions).1435test_lazy_prereq SHA1 '1436 test $(git hash-object /dev/null) = e69de29bb2d1d6434b8b29ae775ad8c2e48c53911437'14381439test_lazy_prereq REBASE_P '1440 test -z "$GIT_TEST_SKIP_REBASE_P"1441'