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. 20iftest -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)||exit1 30fi 31iftest -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 52iftest!-f"$GIT_BUILD_DIR"/GIT-BUILD-OPTIONS 53then 54echo>&2'error: GIT-BUILD-OPTIONS missing (has Git been built?).' 55exit1 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 63iftest $? !=1 64then 65iftest -n"$GIT_TEST_INSTALLED" 66then 67echo>&2"error: there is no working Git at '$GIT_TEST_INSTALLED'" 68else 69echo>&2'error: you do not seem to have built git yet.' 70fi 71exit1 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 81iftest -n"$store_arg_to" 82then 83eval$store_arg_to=\$opt 84 store_arg_to= 85 prev_opt= 86continue 87fi 88 89case"$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) 102help=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. 111test -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 118tee=t 119;; 120--valgrind=*) 121 valgrind=${opt#--*=} 122tee=t 123;; 124--valgrind-only=*) 125 valgrind_only=${opt#--*=} 126tee=t 127;; 128--tee) 129tee=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 140tee=t 141;; 142--stress) 143 stress=t ;; 144--stress=*) 145 stress=${opt#--*=} 146case"$stress"in 147*[!0-9]*|0*|"") 148echo"error: --stress=<N> requires the number of jobs to run">&2 149exit1 150;; 151*)# Good. 152;; 153esac 154;; 155--stress-limit=*) 156 stress_limit=${opt#--*=} 157case"$stress_limit"in 158*[!0-9]*|0*|"") 159echo"error: --stress-limit=<N> requires the number of repetitions">&2 160exit1 161;; 162*)# Good. 163;; 164esac 165;; 166*) 167echo"error: unknown test option '$opt'">&2;exit1;; 168esac 169 170 prev_opt=$opt 171done 172iftest -n"$store_arg_to" 173then 174echo"error:$prev_optrequires an argument">&2 175exit1 176fi 177 178iftest -n"$valgrind_only" 179then 180test -z"$valgrind"&& valgrind=memcheck 181test -z"$verbose"&& verbose_only="$valgrind_only" 182eliftest -n"$valgrind" 183then 184test -z"$verbose_log"&& verbose=t 185fi 186 187iftest -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. 206iftest"$GIT_TEST_STRESS_STARTED"="done" 207then 208:# Don't stress test again. 209eliftest -n"$stress" 210then 211iftest"$stress"!= t 212then 213 job_count=$stress 214eliftest -n"$GIT_TEST_STRESS_LOAD" 215then 216 job_count="$GIT_TEST_STRESS_LOAD" 217elif job_count=$(getconf _NPROCESSORS_ONLN 2>/dev/null)&& 218test -n"$job_count" 219then 220 job_count=$((2 * $job_count)) 221else 222 job_count=8 223fi 224 225mkdir-p"$TEST_RESULTS_DIR" 226 stressfail="$TEST_RESULTS_BASE.stress-failed" 227rm-f"$stressfail" 228 229 stress_exit=0 230trap' 231 kill$job_pids2>/dev/null 232 wait 233 stress_exit=1 234 ' TERM INT HUP 235 236 job_pids= 237 job_nr=0 238whiletest$job_nr-lt"$job_count" 239do 240( 241 GIT_TEST_STRESS_STARTED=done 242 GIT_TEST_STRESS_JOB_NR=$job_nr 243export GIT_TEST_STRESS_STARTED GIT_TEST_STRESS_JOB_NR 244 245trap' 246 kill$test_pid2>/dev/null 247 wait 248 exit 1 249 ' TERM INT 250 251 cnt=1 252while!test -e"$stressfail"&& 253{test -z"$stress_limit"|| 254test$cnt-le$stress_limit; } 255do 256$TEST_SHELL_PATH"$0""$@">"$TEST_RESULTS_BASE.stress-$job_nr.out"2>&1& 257 test_pid=$! 258 259ifwait$test_pid 260then 261printf"OK %2d.%d\n"$GIT_TEST_STRESS_JOB_NR $cnt 262else 263echo$GIT_TEST_STRESS_JOB_NR>>"$stressfail" 264printf"FAIL %2d.%d\n"$GIT_TEST_STRESS_JOB_NR $cnt 265fi 266 cnt=$(($cnt + 1)) 267done 268) & 269 job_pids="$job_pids$!" 270 job_nr=$(($job_nr + 1)) 271done 272 273wait 274 275iftest -f"$stressfail" 276then 277 stress_exit=1 278echo"Log(s) of failed test run(s):" 279for failed_job_nr in$(sort -n "$stressfail") 280do 281echo"Contents of '$TEST_RESULTS_BASE.stress-$failed_job_nr.out':" 282cat"$TEST_RESULTS_BASE.stress-$failed_job_nr.out" 283done 284rm-rf"$TRASH_DIRECTORY.stress-failed" 285# Move the last one. 286mv"$TRASH_DIRECTORY.stress-$failed_job_nr""$TRASH_DIRECTORY.stress-failed" 287fi 288 289exit$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. 294iftest"$GIT_TEST_TEE_STARTED"="done" 295then 296:# do not redirect again 297eliftest -n"$tee" 298then 299mkdir-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 304export 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; 311echo $? >"$TEST_RESULTS_BASE.exit") |tee-a"$GIT_TEST_TEE_OUTPUT_FILE" 312test"$(cat "$TEST_RESULTS_BASE.exit")"=0 313exit 314fi 315 316iftest -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. 326iftest -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 ' 332then 333: Executed by a Bash version supporting BASH_XTRACEFD. Good. 334else 335echo>&2"warning: ignoring -x; '$0' is untraceable without BASH_XTRACEFD" 336 trace= 337fi 338fi 339iftest -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. 356iftest -n"$GIT_TEST_GETTEXT_POISON" 357then 358 GIT_TEST_GETTEXT_POISON_ORIG=$GIT_TEST_GETTEXT_POISON 359unset 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. 405case"$GIT_TEST_FRAMEWORK_SELFTEST"in 406 t)return;; 407esac 408 409 old_name=$1 new_name=$2 410eval"old_isset=\${${old_name}:+isset}" 411eval"new_isset=\${${new_name}:+isset}" 412 413case"$old_isset,$new_isset"in 414 isset,) 415echo>&2"warning:$old_nameis now$new_name" 416echo>&2"hint: set$new_nametoo during the transition period" 417eval"$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;; 424esac 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 432iftest -n"${GIT_TEST_INDEX_VERSION:+isset}" 433then 434 GIT_INDEX_VERSION="$GIT_TEST_INDEX_VERSION" 435export GIT_INDEX_VERSION 436fi 437 438# Add libc MALLOC and MALLOC_PERTURB test 439# only if we are not executing the test with valgrind 440iftest -n"$valgrind"|| 441test -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 452export MALLOC_CHECK_ MALLOC_PERTURB_ 453} 454 teardown_malloc_check () { 455unset 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"&& ( 504test -t1&& 505tput bold >/dev/null 2>&1&& 506tput setaf 1>/dev/null 2>&1&& 507tput sgr0 >/dev/null 2>&1 508) && 509 color=t 510 511iftest -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 () { 533test -z"$1"&&test -n"$quiet"&&return 534eval"say_color_color=\$say_color_$1" 535shift 536printf"%s\\n""$say_color_color$*$say_color_reset" 537} 538else 539 say_color() { 540test -z"$1"&&test -n"$quiet"&&return 541shift 542printf"%s\n""$*" 543} 544fi 545 546TERM=dumb 547export TERM 548 549error () { 550 say_color error "error: $*" 551 GIT_EXIT_OK=t 552exit1 553} 554 555BUG () { 556 error >&7"bug in the test script: $*" 557} 558 559say () { 560 say_color info "$*" 561} 562 563iftest -n"$HARNESS_ACTIVE" 564then 565iftest"$verbose"= t ||test -n"$verbose_only" 566then 567printf'Bail out! %s\n' \ 568'verbose mode forbidden under TAP harness; try --verbose-log' 569exit1 570fi 571fi 572 573test"${test_description}"!=""|| 574error "Test script did not set test_description." 575 576iftest"$help"="t" 577then 578printf'%s\n'"$test_description" 579exit0 580fi 581 582exec5>&1 583exec6<&0 584exec7>&2 585iftest"$verbose_log"="t" 586then 587exec3>>"$GIT_TEST_TEE_OUTPUT_FILE"4>&3 588eliftest"$verbose"="t" 589then 590exec4>&2 3>&1 591else 592exec4>/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=$? 618iftest -n"$GIT_EXIT_OK" 619then 620exit$code 621else 622echo>&5"FATAL: Unexpected exit with code$code" 623exit1 624fi 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" 646shift 647printf'%s\n'"$*"|sed-e's/^/# /' 648test"$immediate"=""|| { GIT_EXIT_OK=t;exit1; } 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 () { 662test"$debug"=""||eval"$1" 663} 664 665match_pattern_list () { 666 arg="$1" 667shift 668test -z"$*"&&return1 669for pattern_ 670do 671case"$arg"in 672$pattern_) 673return0 674esac 675done 676return1 677} 678 679match_test_selector_list () { 680 title="$1" 681shift 682 arg="$1" 683shift 684test -z"$1"&&return0 685 686# Both commas and whitespace are accepted as separators. 687 OLDIFS=$IFS 688 IFS=' ,' 689set --$1 690 IFS=$OLDIFS 691 692# If the first selector is negative we include by default. 693 include= 694case"$1"in 695!*) include=t ;; 696esac 697 698for selector 699do 700 orig_selector=$selector 701 702 positive=t 703case"$selector"in 704!*) 705 positive= 706 selector=${selector##?} 707;; 708esac 709 710test -z"$selector"&&continue 711 712case"$selector"in 713*-*) 714ifexpr"z${selector%%-*}":"z[0-9]*[^0-9]">/dev/null 715then 716echo"error:$title: invalid non-numeric in range" \ 717"start: '$orig_selector'">&2 718exit1 719fi 720ifexpr"z${selector#*-}":"z[0-9]*[^0-9]">/dev/null 721then 722echo"error:$title: invalid non-numeric in range" \ 723"end: '$orig_selector'">&2 724exit1 725fi 726;; 727*) 728ifexpr"z$selector":"z[0-9]*[^0-9]">/dev/null 729then 730echo"error:$title: invalid non-numeric in test" \ 731"selector: '$orig_selector'">&2 732exit1 733fi 734esac 735 736# Short cut for "obvious" cases 737test -z"$include"&&test -z"$positive"&&continue 738test -n"$include"&&test -n"$positive"&&continue 739 740case"$selector"in 741-*) 742iftest$arg-le${selector#-} 743then 744 include=$positive 745fi 746;; 747*-) 748iftest$arg-ge${selector%-} 749then 750 include=$positive 751fi 752;; 753*-*) 754iftest${selector%%-*}-le$arg \ 755&&test$arg-le${selector#*-} 756then 757 include=$positive 758fi 759;; 760*) 761iftest$arg-eq$selector 762then 763 include=$positive 764fi 765;; 766esac 767done 768 769test -n"$include" 770} 771 772maybe_teardown_verbose () { 773test -z"$verbose_only"&&return 774exec4>/dev/null 3>/dev/null 775 verbose= 776} 777 778last_verbose=t 779maybe_setup_verbose () { 780test -z"$verbose_only"&&return 781if match_pattern_list $test_count $verbose_only 782then 783exec4>&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. 789test -z"$last_verbose"&&echo>&3"" 790 verbose=t 791else 792exec4>/dev/null 3>/dev/null 793 verbose= 794fi 795 last_verbose=$verbose 796} 797 798maybe_teardown_valgrind () { 799test -z"$GIT_VALGRIND"&&return 800 GIT_VALGRIND_ENABLED= 801} 802 803maybe_setup_valgrind () { 804test -z"$GIT_VALGRIND"&&return 805iftest -z"$valgrind_only" 806then 807 GIT_VALGRIND_ENABLED=t 808return 809fi 810 GIT_VALGRIND_ENABLED= 811if match_pattern_list $test_count $valgrind_only 812then 813 GIT_VALGRIND_ENABLED=t 814fi 815} 816 817want_trace () { 818test"$trace"= t && { 819test"$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 '$*' 829eval" 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_=$? 859if want_trace 860then 861set+x 862fi 863}2>/dev/null 4>&2 864 865iftest"$test_eval_ret_"!=0&& want_trace 866then 867 say_color error >&4"error: last command exited with \$?=$test_eval_ret_" 868fi 869return$test_eval_ret_ 870} 871 872test_run_ () { 873 test_cleanup=: 874 expecting_failure=$2 875 876iftest"${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 883if$(printf '%s\n' "$1" | sed -f "$GIT_BUILD_DIR/t/chainlint.sed" | grep -q '?![A-Z][A-Z]*?!')|| 884test"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;; 958esac 959} 960 961# stub; perf-lib overrides it 962test_at_end_hook_ () { 963: 964} 965 966test_done () { 967 GIT_EXIT_OK=t 968 969iftest -z"$HARNESS_ACTIVE" 970then 971mkdir-p"$TEST_RESULTS_DIR" 972 973cat>"$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 981fi 982 983iftest"$test_fixed"!=0 984then 985 say_color error "#$test_fixedknown breakage(s) vanished; please update test(s)" 986fi 987iftest"$test_broken"!=0 988then 989 say_color warn "# still have$test_brokenknown breakage(s)" 990fi 991iftest"$test_broken"!=0||test"$test_fixed"!=0 992then 993 test_remaining=$(( $test_count - $test_broken - $test_fixed )) 994 msg="remaining$test_remainingtest(s)" 995else 996 test_remaining=$test_count 997 msg="$test_counttest(s)" 998fi 999case"$test_failure"in10000)1001iftest$test_external_has_tap-eq01002then1003iftest$test_remaining-gt01004then1005 say_color pass "# passed all$msg"1006fi10071008# Maybe print SKIP message1009test -z"$skip_all"|| skip_all="# SKIP$skip_all"1010case"$test_count"in10110)1012 say "1..$test_count${skip_all:+ $skip_all}"1013;;1014*)1015test -z"$skip_all"||1016 say_color warn "$skip_all"1017 say "1..$test_count"1018;;1019esac1020fi10211022iftest -z"$debug"1023then1024test -d"$TRASH_DIRECTORY"||1025 error "Tests passed but trash directory already removed before test cleanup; aborting"10261027cd"$TRASH_DIRECTORY/.."&&1028rm-fr"$TRASH_DIRECTORY"||1029 error "Tests passed but test cleanup failed; aborting"1030fi1031 test_at_end_hook_10321033exit0;;10341035*)1036iftest$test_external_has_tap-eq01037then1038 say_color error "# failed$test_failureamong$msg"1039 say "1..$test_count"1040fi10411042exit1;;10431044esac1045}10461047iftest -n"$valgrind"1048then1049 make_symlink () {1050test -h"$2"&&1051test"$1"="$(readlink "$2")"|| {1052# be super paranoid1053ifmkdir"$2".lock1054then1055rm-f"$2"&&1056ln-s"$1""$2"&&1057rm-r"$2".lock1058else1059whiletest -d"$2".lock1060do1061 say "Waiting for lock on$2."1062sleep11063done1064fi1065}1066}10671068 make_valgrind_symlink () {1069# handle only executables, unless they are shell libraries that1070# need to be in the exec-path.1071test -x"$1"||1072test"# "="$(test_copy_bytes 2 <"$1")"||1073return;10741075 base=$(basename "$1")1076case"$base"in1077test-*)1078 symlink_target="$GIT_BUILD_DIR/t/helper/$base"1079;;1080*)1081 symlink_target="$GIT_BUILD_DIR/$base"1082;;1083esac1084# do not override scripts1085iftest -x"$symlink_target"&&1086test!-d"$symlink_target"&&1087test"#!"!="$(test_copy_bytes 2 <"$symlink_target")"1088then1089 symlink_target=../valgrind.sh1090fi1091case"$base"in1092*.sh|*.perl)1093 symlink_target=../unprocessed-script1094esac1095# 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/valgrind1101mkdir-p"$GIT_VALGRIND"/bin1102forfilein$GIT_BUILD_DIR/git*$GIT_BUILD_DIR/t/helper/test-*1103do1104 make_valgrind_symlink $file1105done1106# special-case the mergetools loadables1107 make_symlink "$GIT_BUILD_DIR"/mergetools "$GIT_VALGRIND/bin/mergetools"1108 OLDIFS=$IFS1109 IFS=:1110for path in$PATH1111do1112ls"$path"/git-*2> /dev/null |1113whilereadfile1114do1115 make_valgrind_symlink "$file"1116done1117done1118 IFS=$OLDIFS1119 PATH=$GIT_VALGRIND/bin:$PATH1120 GIT_EXEC_PATH=$GIT_VALGRIND/bin1121export GIT_VALGRIND1122 GIT_VALGRIND_MODE="$valgrind"1123export GIT_VALGRIND_MODE1124 GIT_VALGRIND_ENABLED=t1125test -n"$valgrind_only"&& GIT_VALGRIND_ENABLED=1126export GIT_VALGRIND_ENABLED1127eliftest -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"1135if!test -x"$git_bin_dir/git"1136then1137iftest -z"$with_dashes"1138then1139 say "$git_bin_dir/git is not executable; using GIT_EXEC_PATH"1140fi1141 with_dashes=t1142fi1143 PATH="$git_bin_dir:$PATH"1144 GIT_EXEC_PATH=$GIT_BUILD_DIR1145iftest -n"$with_dashes"1146then1147 PATH="$GIT_BUILD_DIR:$PATH"1148fi1149fi1150GIT_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_NOSYSTEM11541155iftest -z"$GIT_TEST_CMP"1156then1157iftest -n"$GIT_TEST_CMP_USE_COPIED_CONTEXT"1158then1159 GIT_TEST_CMP="$DIFF-c"1160else1161 GIT_TEST_CMP="$DIFF-u"1162fi1163fi11641165GITPERLLIB="$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-tool1172then1173echo>&2'You need to build test-tool:'1174echo>&2'Run "make t/helper/test-tool" in the source (toplevel) directory'1175exit11176fi11771178# Test repository1179rm-fr"$TRASH_DIRECTORY"|| {1180 GIT_EXIT_OK=t1181echo>&5"FATAL: Cannot prepare test area"1182exit11183}11841185HOME="$TRASH_DIRECTORY"1186GNUPGHOME="$HOME/gnupg-home-not-used"1187export HOME GNUPGHOME11881189iftest -z"$TEST_NO_CREATE_REPO"1190then1191 test_create_repo "$TRASH_DIRECTORY"1192else1193mkdir-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"||exit111981199this_test=${0##*/}1200this_test=${this_test%%-*}1201if match_pattern_list "$this_test"$GIT_SKIP_TESTS1202then1203 say_color info >&3"skipping test$this_testaltogether"1204 skip_all="skip all tests in$this_test"1205 test_done1206fi12071208# Provide an implementation of the 'yes' utility1209yes() {1210iftest$#=01211then1212 y=y1213else1214 y="$*"1215fi12161217 i=01218whiletest$i-lt991219do1220echo"$y"1221 i=$(($i+1))1222done1223}12241225# Fix some commands on Windows1226uname_s=$(uname -s)1227case$uname_sin1228*MINGW*)1229# Windows has its own (incompatible) sort and find1230sort() {1231/usr/bin/sort"$@"1232}1233find() {1234/usr/bin/find"$@"1235}1236# git sees Windows-style pwd1237pwd() {1238builtin 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 GETTEXT12711272iftest -n"$GIT_TEST_GETTEXT_POISON_ORIG"1273then1274 GIT_TEST_GETTEXT_POISON=$GIT_TEST_GETTEXT_POISON_ORIG1275unset GIT_TEST_GETTEXT_POISON_ORIG1276fi12771278# Can we rely on git's output in the C locale?1279iftest -z"$GIT_TEST_GETTEXT_POISON"1280then1281 test_set_prereq C_LOCALE_OUTPUT1282fi12831284iftest -z"$GIT_TEST_CHECK_CACHE_TREE"1285then1286 GIT_TEST_CHECK_CACHE_TREE=true1287export 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 -s128&&"$@")1400}14011402test_lazy_prereq CMDLINE_LIMIT '1403 test_have_prereq !MINGW,!CYGWIN &&1404 run_with_limited_cmdline true1405'14061407run_with_limited_stack () {1408(ulimit -s128&&"$@")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|1418sed-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'