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*) 143echo"error: unknown test option '$opt'">&2;exit1;; 144esac 145 146 prev_opt=$opt 147done 148iftest -n"$store_arg_to" 149then 150echo"error:$prev_optrequires an argument">&2 151exit1 152fi 153 154iftest -n"$valgrind_only" 155then 156test -z"$valgrind"&& valgrind=memcheck 157test -z"$verbose"&& verbose_only="$valgrind_only" 158eliftest -n"$valgrind" 159then 160test -z"$verbose_log"&& verbose=t 161fi 162 163TEST_NAME="$(basename "$0" .sh)" 164TEST_RESULTS_DIR="$TEST_OUTPUT_DIRECTORY/test-results" 165TEST_RESULTS_BASE="$TEST_RESULTS_DIR/$TEST_NAME" 166 167# if --tee was passed, write the output not only to the terminal, but 168# additionally to the file test-results/$BASENAME.out, too. 169iftest"$GIT_TEST_TEE_STARTED"="done" 170then 171:# do not redirect again 172eliftest -n"$tee" 173then 174mkdir-p"$TEST_RESULTS_DIR" 175 176# Make this filename available to the sub-process in case it is using 177# --verbose-log. 178 GIT_TEST_TEE_OUTPUT_FILE=$TEST_RESULTS_BASE.out 179export GIT_TEST_TEE_OUTPUT_FILE 180 181# Truncate before calling "tee -a" to get rid of the results 182# from any previous runs. 183>"$GIT_TEST_TEE_OUTPUT_FILE" 184 185(GIT_TEST_TEE_STARTED=done${TEST_SHELL_PATH}"$0""$@"2>&1; 186echo $? >"$TEST_RESULTS_BASE.exit") |tee-a"$GIT_TEST_TEE_OUTPUT_FILE" 187test"$(cat "$TEST_RESULTS_BASE.exit")"=0 188exit 189fi 190 191iftest -n"$trace"&&test -n"$test_untraceable" 192then 193# '-x' tracing requested, but this test script can't be reliably 194# traced, unless it is run with a Bash version supporting 195# BASH_XTRACEFD (introduced in Bash v4.1). 196# 197# Perform this version check _after_ the test script was 198# potentially re-executed with $TEST_SHELL_PATH for '--tee' or 199# '--verbose-log', so the right shell is checked and the 200# warning is issued only once. 201iftest -n"$BASH_VERSION"&&eval' 202 test${BASH_VERSINFO[0]}-gt 4 || { 203 test${BASH_VERSINFO[0]}-eq 4 && 204 test${BASH_VERSINFO[1]}-ge 1 205 } 206 ' 207then 208: Executed by a Bash version supporting BASH_XTRACEFD. Good. 209else 210echo>&2"warning: ignoring -x; '$0' is untraceable without BASH_XTRACEFD" 211 trace= 212fi 213fi 214iftest -n"$trace"&&test -z"$verbose_log" 215then 216 verbose=t 217fi 218 219# For repeatability, reset the environment to known value. 220# TERM is sanitized below, after saving color control sequences. 221LANG=C 222LC_ALL=C 223PAGER=cat 224TZ=UTC 225export LANG LC_ALL PAGER TZ 226EDITOR=: 227 228# GIT_TEST_GETTEXT_POISON should not influence git commands executed 229# during initialization of test-lib and the test repo. Back it up, 230# unset and then restore after initialization is finished. 231iftest -n"$GIT_TEST_GETTEXT_POISON" 232then 233 GIT_TEST_GETTEXT_POISON_ORIG=$GIT_TEST_GETTEXT_POISON 234unset GIT_TEST_GETTEXT_POISON 235fi 236 237# A call to "unset" with no arguments causes at least Solaris 10 238# /usr/xpg4/bin/sh and /bin/ksh to bail out. So keep the unsets 239# deriving from the command substitution clustered with the other 240# ones. 241unset VISUAL EMAIL LANGUAGE COLUMNS $("$PERL_PATH"-e' 242 my @env = keys %ENV; 243 my$ok= join("|", qw( 244 TRACE 245 DEBUG 246 TEST 247 .*_TEST 248 PROVE 249 VALGRIND 250 UNZIP 251 PERF_ 252 CURL_VERBOSE 253 TRACE_CURL 254 )); 255 my @vars = grep(/^GIT_/ && !/^GIT_($ok)/o, @env); 256 print join("\n", @vars); 257') 258unset XDG_CACHE_HOME 259unset XDG_CONFIG_HOME 260unset GITPERLLIB 261GIT_AUTHOR_EMAIL=author@example.com 262GIT_AUTHOR_NAME='A U Thor' 263GIT_COMMITTER_EMAIL=committer@example.com 264GIT_COMMITTER_NAME='C O Mitter' 265GIT_MERGE_VERBOSITY=5 266GIT_MERGE_AUTOEDIT=no 267export GIT_MERGE_VERBOSITY GIT_MERGE_AUTOEDIT 268export GIT_AUTHOR_EMAIL GIT_AUTHOR_NAME 269export GIT_COMMITTER_EMAIL GIT_COMMITTER_NAME 270export EDITOR 271 272# Tests using GIT_TRACE typically don't want <timestamp> <file>:<line> output 273GIT_TRACE_BARE=1 274export GIT_TRACE_BARE 275 276check_var_migration () { 277# the warnings and hints given from this helper depends 278# on end-user settings, which will disrupt the self-test 279# done on the test framework itself. 280case"$GIT_TEST_FRAMEWORK_SELFTEST"in 281 t)return;; 282esac 283 284 old_name=$1 new_name=$2 285eval"old_isset=\${${old_name}:+isset}" 286eval"new_isset=\${${new_name}:+isset}" 287 288case"$old_isset,$new_isset"in 289 isset,) 290echo>&2"warning:$old_nameis now$new_name" 291echo>&2"hint: set$new_nametoo during the transition period" 292eval"$new_name=\$$old_name" 293;; 294 isset,isset) 295# do this later 296# echo >&2 "warning: $old_name is now $new_name" 297# echo >&2 "hint: remove $old_name" 298;; 299esac 300} 301 302check_var_migration GIT_FSMONITOR_TEST GIT_TEST_FSMONITOR 303check_var_migration TEST_GIT_INDEX_VERSION GIT_TEST_INDEX_VERSION 304check_var_migration GIT_FORCE_PRELOAD_TEST GIT_TEST_PRELOAD_INDEX 305 306# Use specific version of the index file format 307iftest -n"${GIT_TEST_INDEX_VERSION:+isset}" 308then 309 GIT_INDEX_VERSION="$GIT_TEST_INDEX_VERSION" 310export GIT_INDEX_VERSION 311fi 312 313# Add libc MALLOC and MALLOC_PERTURB test 314# only if we are not executing the test with valgrind 315iftest -n"$valgrind"|| 316test -n"$TEST_NO_MALLOC_CHECK" 317then 318 setup_malloc_check () { 319: nothing 320} 321 teardown_malloc_check () { 322: nothing 323} 324else 325 setup_malloc_check () { 326 MALLOC_CHECK_=3 MALLOC_PERTURB_=165 327export MALLOC_CHECK_ MALLOC_PERTURB_ 328} 329 teardown_malloc_check () { 330unset MALLOC_CHECK_ MALLOC_PERTURB_ 331} 332fi 333 334# Protect ourselves from common misconfiguration to export 335# CDPATH into the environment 336unset CDPATH 337 338unset GREP_OPTIONS 339unset UNZIP 340 341case$(echo $GIT_TRACE |tr "[A-Z]" "[a-z]")in 3421|2|true) 343 GIT_TRACE=4 344;; 345esac 346 347# Convenience 348# 349# A regexp to match 5, 35 and 40 hexdigits 350_x05='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]' 351_x35="$_x05$_x05$_x05$_x05$_x05$_x05$_x05" 352_x40="$_x35$_x05" 353 354# Zero SHA-1 355_z40=0000000000000000000000000000000000000000 356 357OID_REGEX="$_x40" 358ZERO_OID=$_z40 359EMPTY_TREE=4b825dc642cb6eb9a060e54bf8d69288fbee4904 360EMPTY_BLOB=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 361 362# Line feed 363LF=' 364' 365 366# UTF-8 ZERO WIDTH NON-JOINER, which HFS+ ignores 367# when case-folding filenames 368u200c=$(printf '\342\200\214') 369 370export _x05 _x35 _x40 _z40 LF u200c EMPTY_TREE EMPTY_BLOB ZERO_OID OID_REGEX 371 372# Each test should start with something like this, after copyright notices: 373# 374# test_description='Description of this test... 375# This test checks if command xyzzy does the right thing... 376# ' 377# . ./test-lib.sh 378test"x$TERM"!="xdumb"&& ( 379test -t1&& 380tput bold >/dev/null 2>&1&& 381tput setaf 1>/dev/null 2>&1&& 382tput sgr0 >/dev/null 2>&1 383) && 384 color=t 385 386iftest -n"$color" 387then 388# Save the color control sequences now rather than run tput 389# each time say_color() is called. This is done for two 390# reasons: 391# * TERM will be changed to dumb 392# * HOME will be changed to a temporary directory and tput 393# might need to read ~/.terminfo from the original HOME 394# directory to get the control sequences 395# Note: This approach assumes the control sequences don't end 396# in a newline for any terminal of interest (command 397# substitutions strip trailing newlines). Given that most 398# (all?) terminals in common use are related to ECMA-48, this 399# shouldn't be a problem. 400 say_color_error=$(tput bold; tput setaf 1)# bold red 401 say_color_skip=$(tput setaf 4)# blue 402 say_color_warn=$(tput setaf 3)# brown/yellow 403 say_color_pass=$(tput setaf 2)# green 404 say_color_info=$(tput setaf 6)# cyan 405 say_color_reset=$(tput sgr0) 406 say_color_=""# no formatting for normal text 407 say_color () { 408test -z"$1"&&test -n"$quiet"&&return 409eval"say_color_color=\$say_color_$1" 410shift 411printf"%s\\n""$say_color_color$*$say_color_reset" 412} 413else 414 say_color() { 415test -z"$1"&&test -n"$quiet"&&return 416shift 417printf"%s\n""$*" 418} 419fi 420 421TERM=dumb 422export TERM 423 424error () { 425 say_color error "error: $*" 426 GIT_EXIT_OK=t 427exit1 428} 429 430BUG () { 431 error >&7"bug in the test script: $*" 432} 433 434say () { 435 say_color info "$*" 436} 437 438iftest -n"$HARNESS_ACTIVE" 439then 440iftest"$verbose"= t ||test -n"$verbose_only" 441then 442printf'Bail out! %s\n' \ 443'verbose mode forbidden under TAP harness; try --verbose-log' 444exit1 445fi 446fi 447 448test"${test_description}"!=""|| 449error "Test script did not set test_description." 450 451iftest"$help"="t" 452then 453printf'%s\n'"$test_description" 454exit0 455fi 456 457exec5>&1 458exec6<&0 459exec7>&2 460iftest"$verbose_log"="t" 461then 462exec3>>"$GIT_TEST_TEE_OUTPUT_FILE"4>&3 463eliftest"$verbose"="t" 464then 465exec4>&2 3>&1 466else 467exec4>/dev/null 3>/dev/null 468fi 469 470# Send any "-x" output directly to stderr to avoid polluting tests 471# which capture stderr. We can do this unconditionally since it 472# has no effect if tracing isn't turned on. 473# 474# Note that this sets up the trace fd as soon as we assign the variable, so it 475# must come after the creation of descriptor 4 above. Likewise, we must never 476# unset this, as it has the side effect of closing descriptor 4, which we 477# use to show verbose tests to the user. 478# 479# Note also that we don't need or want to export it. The tracing is local to 480# this shell, and we would not want to influence any shells we exec. 481BASH_XTRACEFD=4 482 483test_failure=0 484test_count=0 485test_fixed=0 486test_broken=0 487test_success=0 488 489test_external_has_tap=0 490 491die () { 492 code=$? 493iftest -n"$GIT_EXIT_OK" 494then 495exit$code 496else 497echo>&5"FATAL: Unexpected exit with code$code" 498exit1 499fi 500} 501 502GIT_EXIT_OK= 503trap'die' EXIT 504trap'exit $?' INT TERM HUP 505 506# The user-facing functions are loaded from a separate file so that 507# test_perf subshells can have them too 508. "$TEST_DIRECTORY/test-lib-functions.sh" 509 510# You are not expected to call test_ok_ and test_failure_ directly, use 511# the test_expect_* functions instead. 512 513test_ok_ () { 514 test_success=$(($test_success + 1)) 515 say_color """ok$test_count- $@" 516} 517 518test_failure_ () { 519 test_failure=$(($test_failure + 1)) 520 say_color error "not ok$test_count-$1" 521shift 522printf'%s\n'"$*"|sed-e's/^/# /' 523test"$immediate"=""|| { GIT_EXIT_OK=t;exit1; } 524} 525 526test_known_broken_ok_ () { 527 test_fixed=$(($test_fixed+1)) 528 say_color error "ok$test_count- $@ # TODO known breakage vanished" 529} 530 531test_known_broken_failure_ () { 532 test_broken=$(($test_broken+1)) 533 say_color warn "not ok$test_count- $@ # TODO known breakage" 534} 535 536test_debug () { 537test"$debug"=""||eval"$1" 538} 539 540match_pattern_list () { 541 arg="$1" 542shift 543test -z"$*"&&return1 544for pattern_ 545do 546case"$arg"in 547$pattern_) 548return0 549esac 550done 551return1 552} 553 554match_test_selector_list () { 555 title="$1" 556shift 557 arg="$1" 558shift 559test -z"$1"&&return0 560 561# Both commas and whitespace are accepted as separators. 562 OLDIFS=$IFS 563 IFS=' ,' 564set --$1 565 IFS=$OLDIFS 566 567# If the first selector is negative we include by default. 568 include= 569case"$1"in 570!*) include=t ;; 571esac 572 573for selector 574do 575 orig_selector=$selector 576 577 positive=t 578case"$selector"in 579!*) 580 positive= 581 selector=${selector##?} 582;; 583esac 584 585test -z"$selector"&&continue 586 587case"$selector"in 588*-*) 589ifexpr"z${selector%%-*}":"z[0-9]*[^0-9]">/dev/null 590then 591echo"error:$title: invalid non-numeric in range" \ 592"start: '$orig_selector'">&2 593exit1 594fi 595ifexpr"z${selector#*-}":"z[0-9]*[^0-9]">/dev/null 596then 597echo"error:$title: invalid non-numeric in range" \ 598"end: '$orig_selector'">&2 599exit1 600fi 601;; 602*) 603ifexpr"z$selector":"z[0-9]*[^0-9]">/dev/null 604then 605echo"error:$title: invalid non-numeric in test" \ 606"selector: '$orig_selector'">&2 607exit1 608fi 609esac 610 611# Short cut for "obvious" cases 612test -z"$include"&&test -z"$positive"&&continue 613test -n"$include"&&test -n"$positive"&&continue 614 615case"$selector"in 616-*) 617iftest$arg-le${selector#-} 618then 619 include=$positive 620fi 621;; 622*-) 623iftest$arg-ge${selector%-} 624then 625 include=$positive 626fi 627;; 628*-*) 629iftest${selector%%-*}-le$arg \ 630&&test$arg-le${selector#*-} 631then 632 include=$positive 633fi 634;; 635*) 636iftest$arg-eq$selector 637then 638 include=$positive 639fi 640;; 641esac 642done 643 644test -n"$include" 645} 646 647maybe_teardown_verbose () { 648test -z"$verbose_only"&&return 649exec4>/dev/null 3>/dev/null 650 verbose= 651} 652 653last_verbose=t 654maybe_setup_verbose () { 655test -z"$verbose_only"&&return 656if match_pattern_list $test_count $verbose_only 657then 658exec4>&2 3>&1 659# Emit a delimiting blank line when going from 660# non-verbose to verbose. Within verbose mode the 661# delimiter is printed by test_expect_*. The choice 662# of the initial $last_verbose is such that before 663# test 1, we do not print it. 664test -z"$last_verbose"&&echo>&3"" 665 verbose=t 666else 667exec4>/dev/null 3>/dev/null 668 verbose= 669fi 670 last_verbose=$verbose 671} 672 673maybe_teardown_valgrind () { 674test -z"$GIT_VALGRIND"&&return 675 GIT_VALGRIND_ENABLED= 676} 677 678maybe_setup_valgrind () { 679test -z"$GIT_VALGRIND"&&return 680iftest -z"$valgrind_only" 681then 682 GIT_VALGRIND_ENABLED=t 683return 684fi 685 GIT_VALGRIND_ENABLED= 686if match_pattern_list $test_count $valgrind_only 687then 688 GIT_VALGRIND_ENABLED=t 689fi 690} 691 692want_trace () { 693test"$trace"= t && { 694test"$verbose"= t ||test"$verbose_log"= t 695} 696} 697 698# This is a separate function because some tests use 699# "return" to end a test_expect_success block early 700# (and we want to make sure we run any cleanup like 701# "set +x"). 702test_eval_inner_ () { 703# Do not add anything extra (including LF) after '$*' 704eval" 705 want_trace && set -x 706 $*" 707} 708 709test_eval_ () { 710# If "-x" tracing is in effect, then we want to avoid polluting stderr 711# with non-test commands. But once in "set -x" mode, we cannot prevent 712# the shell from printing the "set +x" to turn it off (nor the saving 713# of $? before that). But we can make sure that the output goes to 714# /dev/null. 715# 716# There are a few subtleties here: 717# 718# - we have to redirect descriptor 4 in addition to 2, to cover 719# BASH_XTRACEFD 720# 721# - the actual eval has to come before the redirection block (since 722# it needs to see descriptor 4 to set up its stderr) 723# 724# - likewise, any error message we print must be outside the block to 725# access descriptor 4 726# 727# - checking $? has to come immediately after the eval, but it must 728# be _inside_ the block to avoid polluting the "set -x" output 729# 730 731 test_eval_inner_ "$@"</dev/null >&3 2>&4 732{ 733 test_eval_ret_=$? 734if want_trace 735then 736set+x 737fi 738}2>/dev/null 4>&2 739 740iftest"$test_eval_ret_"!=0&& want_trace 741then 742 say_color error >&4"error: last command exited with \$?=$test_eval_ret_" 743fi 744return$test_eval_ret_ 745} 746 747test_run_ () { 748 test_cleanup=: 749 expecting_failure=$2 750 751iftest"${GIT_TEST_CHAIN_LINT:-1}"!=0;then 752# turn off tracing for this test-eval, as it simply creates 753# confusing noise in the "-x" output 754 trace_tmp=$trace 755 trace= 756# 117 is magic because it is unlikely to match the exit 757# code of other programs 758if$(printf '%s\n' "$1" | sed -f "$GIT_BUILD_DIR/t/chainlint.sed" | grep -q '?![A-Z][A-Z]*?!')|| 759test"OK-117"!="$(test_eval_ "(exit 117)&&$1${LF}${LF}echo OK-\$?"3>&1)" 760 then 761 BUG "broken &&-chain or run-away HERE-DOC:$1" 762 fi 763 trace=$trace_tmp 764 fi 765 766 setup_malloc_check 767 test_eval_ "$1" 768 eval_ret=$? 769 teardown_malloc_check 770 771 if test -z "$immediate" || test$eval_ret= 0 || 772 test -n "$expecting_failure" && test "$test_cleanup" != ":" 773 then 774 setup_malloc_check 775 test_eval_ "$test_cleanup" 776 teardown_malloc_check 777 fi 778 if test "$verbose" = "t" && test -n "$HARNESS_ACTIVE" 779 then 780 echo "" 781 fi 782 return "$eval_ret" 783} 784 785test_start_ () { 786 test_count=$(($test_count+1)) 787 maybe_setup_verbose 788 maybe_setup_valgrind 789} 790 791test_finish_ () { 792 echo >&3 "" 793 maybe_teardown_valgrind 794 maybe_teardown_verbose 795} 796 797test_skip () { 798 to_skip= 799 skipped_reason= 800 if match_pattern_list$this_test.$test_count$GIT_SKIP_TESTS 801 then 802 to_skip=t 803 skipped_reason="GIT_SKIP_TESTS" 804 fi 805 if test -z "$to_skip" && test -n "$test_prereq" && 806 ! test_have_prereq "$test_prereq" 807 then 808 to_skip=t 809 810 of_prereq= 811 if test "$missing_prereq" != "$test_prereq" 812 then 813 of_prereq=" of $test_prereq" 814 fi 815 skipped_reason="missing $missing_prereq${of_prereq}" 816 fi 817 if test -z "$to_skip" && test -n "$run_list" && 818 ! match_test_selector_list '--run'$test_count"$run_list" 819 then 820 to_skip=t 821 skipped_reason="--run" 822 fi 823 824 case "$to_skip" in 825 t) 826 say_color skip >&3 "skipping test: $@" 827 say_color skip "ok $test_count# skip $1 ($skipped_reason)" 828: true 829;; 830*) 831 false 832;; 833esac 834} 835 836# stub; perf-lib overrides it 837test_at_end_hook_ () { 838: 839} 840 841test_done () { 842 GIT_EXIT_OK=t 843 844iftest -z"$HARNESS_ACTIVE" 845then 846mkdir-p"$TEST_RESULTS_DIR" 847 848cat>"$TEST_RESULTS_BASE.counts"<<-EOF 849 total$test_count 850 success$test_success 851 fixed$test_fixed 852 broken$test_broken 853 failed$test_failure 854 855 EOF 856fi 857 858iftest"$test_fixed"!=0 859then 860 say_color error "#$test_fixedknown breakage(s) vanished; please update test(s)" 861fi 862iftest"$test_broken"!=0 863then 864 say_color warn "# still have$test_brokenknown breakage(s)" 865fi 866iftest"$test_broken"!=0||test"$test_fixed"!=0 867then 868 test_remaining=$(( $test_count - $test_broken - $test_fixed )) 869 msg="remaining$test_remainingtest(s)" 870else 871 test_remaining=$test_count 872 msg="$test_counttest(s)" 873fi 874case"$test_failure"in 8750) 876iftest$test_external_has_tap-eq0 877then 878iftest$test_remaining-gt0 879then 880 say_color pass "# passed all$msg" 881fi 882 883# Maybe print SKIP message 884test -z"$skip_all"|| skip_all="# SKIP$skip_all" 885case"$test_count"in 8860) 887 say "1..$test_count${skip_all:+ $skip_all}" 888;; 889*) 890test -z"$skip_all"|| 891 say_color warn "$skip_all" 892 say "1..$test_count" 893;; 894esac 895fi 896 897iftest -z"$debug" 898then 899test -d"$TRASH_DIRECTORY"|| 900 error "Tests passed but trash directory already removed before test cleanup; aborting" 901 902cd"$TRASH_DIRECTORY/.."&& 903rm-fr"$TRASH_DIRECTORY"|| 904 error "Tests passed but test cleanup failed; aborting" 905fi 906 test_at_end_hook_ 907 908exit0;; 909 910*) 911iftest$test_external_has_tap-eq0 912then 913 say_color error "# failed$test_failureamong$msg" 914 say "1..$test_count" 915fi 916 917exit1;; 918 919esac 920} 921 922iftest -n"$valgrind" 923then 924 make_symlink () { 925test -h"$2"&& 926test"$1"="$(readlink "$2")"|| { 927# be super paranoid 928ifmkdir"$2".lock 929then 930rm-f"$2"&& 931ln-s"$1""$2"&& 932rm-r"$2".lock 933else 934whiletest -d"$2".lock 935do 936 say "Waiting for lock on$2." 937sleep1 938done 939fi 940} 941} 942 943 make_valgrind_symlink () { 944# handle only executables, unless they are shell libraries that 945# need to be in the exec-path. 946test -x"$1"|| 947test"# "="$(test_copy_bytes 2 <"$1")"|| 948return; 949 950 base=$(basename "$1") 951case"$base"in 952test-*) 953 symlink_target="$GIT_BUILD_DIR/t/helper/$base" 954;; 955*) 956 symlink_target="$GIT_BUILD_DIR/$base" 957;; 958esac 959# do not override scripts 960iftest -x"$symlink_target"&& 961test!-d"$symlink_target"&& 962test"#!"!="$(test_copy_bytes 2 <"$symlink_target")" 963then 964 symlink_target=../valgrind.sh 965fi 966case"$base"in 967*.sh|*.perl) 968 symlink_target=../unprocessed-script 969esac 970# create the link, or replace it if it is out of date 971 make_symlink "$symlink_target""$GIT_VALGRIND/bin/$base"||exit 972} 973 974# override all git executables in TEST_DIRECTORY/.. 975 GIT_VALGRIND=$TEST_DIRECTORY/valgrind 976mkdir-p"$GIT_VALGRIND"/bin 977forfilein$GIT_BUILD_DIR/git*$GIT_BUILD_DIR/t/helper/test-* 978do 979 make_valgrind_symlink $file 980done 981# special-case the mergetools loadables 982 make_symlink "$GIT_BUILD_DIR"/mergetools "$GIT_VALGRIND/bin/mergetools" 983 OLDIFS=$IFS 984 IFS=: 985for path in$PATH 986do 987ls"$path"/git-*2> /dev/null | 988whilereadfile 989do 990 make_valgrind_symlink "$file" 991done 992done 993 IFS=$OLDIFS 994 PATH=$GIT_VALGRIND/bin:$PATH 995 GIT_EXEC_PATH=$GIT_VALGRIND/bin 996export GIT_VALGRIND 997 GIT_VALGRIND_MODE="$valgrind" 998export GIT_VALGRIND_MODE 999 GIT_VALGRIND_ENABLED=t1000test -n"$valgrind_only"&& GIT_VALGRIND_ENABLED=1001export GIT_VALGRIND_ENABLED1002eliftest -n"$GIT_TEST_INSTALLED"1003then1004 GIT_EXEC_PATH=$($GIT_TEST_INSTALLED/git --exec-path)||1005 error "Cannot run git from$GIT_TEST_INSTALLED."1006 PATH=$GIT_TEST_INSTALLED:$GIT_BUILD_DIR/t/helper:$PATH1007 GIT_EXEC_PATH=${GIT_TEST_EXEC_PATH:-$GIT_EXEC_PATH}1008else# normal case, use ../bin-wrappers only unless $with_dashes:1009 git_bin_dir="$GIT_BUILD_DIR/bin-wrappers"1010if!test -x"$git_bin_dir/git"1011then1012iftest -z"$with_dashes"1013then1014 say "$git_bin_dir/git is not executable; using GIT_EXEC_PATH"1015fi1016 with_dashes=t1017fi1018 PATH="$git_bin_dir:$PATH"1019 GIT_EXEC_PATH=$GIT_BUILD_DIR1020iftest -n"$with_dashes"1021then1022 PATH="$GIT_BUILD_DIR:$PATH"1023fi1024fi1025GIT_TEMPLATE_DIR="$GIT_BUILD_DIR"/templates/blt1026GIT_CONFIG_NOSYSTEM=11027GIT_ATTR_NOSYSTEM=11028export PATH GIT_EXEC_PATH GIT_TEMPLATE_DIR GIT_CONFIG_NOSYSTEM GIT_ATTR_NOSYSTEM10291030iftest -z"$GIT_TEST_CMP"1031then1032iftest -n"$GIT_TEST_CMP_USE_COPIED_CONTEXT"1033then1034 GIT_TEST_CMP="$DIFF-c"1035else1036 GIT_TEST_CMP="$DIFF-u"1037fi1038fi10391040GITPERLLIB="$GIT_BUILD_DIR"/perl/build/lib1041export GITPERLLIB1042test -d"$GIT_BUILD_DIR"/templates/blt || {1043 error "You haven't built things yet, have you?"1044}10451046if!test -x"$GIT_BUILD_DIR"/t/helper/test-tool1047then1048echo>&2'You need to build test-tool:'1049echo>&2'Run "make t/helper/test-tool" in the source (toplevel) directory'1050exit11051fi10521053# Test repository1054TRASH_DIRECTORY="trash directory.$TEST_NAME"1055test -n"$root"&& TRASH_DIRECTORY="$root/$TRASH_DIRECTORY"1056case"$TRASH_DIRECTORY"in1057/*) ;;# absolute path is good1058*) TRASH_DIRECTORY="$TEST_OUTPUT_DIRECTORY/$TRASH_DIRECTORY";;1059esac1060rm-fr"$TRASH_DIRECTORY"|| {1061 GIT_EXIT_OK=t1062echo>&5"FATAL: Cannot prepare test area"1063exit11064}10651066HOME="$TRASH_DIRECTORY"1067GNUPGHOME="$HOME/gnupg-home-not-used"1068export HOME GNUPGHOME10691070iftest -z"$TEST_NO_CREATE_REPO"1071then1072 test_create_repo "$TRASH_DIRECTORY"1073else1074mkdir-p"$TRASH_DIRECTORY"1075fi1076# Use -P to resolve symlinks in our working directory so that the cwd1077# in subprocesses like git equals our $PWD (for pathname comparisons).1078cd -P"$TRASH_DIRECTORY"||exit110791080this_test=${0##*/}1081this_test=${this_test%%-*}1082if match_pattern_list "$this_test"$GIT_SKIP_TESTS1083then1084 say_color info >&3"skipping test$this_testaltogether"1085 skip_all="skip all tests in$this_test"1086 test_done1087fi10881089# Provide an implementation of the 'yes' utility1090yes() {1091iftest$#=01092then1093 y=y1094else1095 y="$*"1096fi10971098 i=01099whiletest$i-lt991100do1101echo"$y"1102 i=$(($i+1))1103done1104}11051106# Fix some commands on Windows1107uname_s=$(uname -s)1108case$uname_sin1109*MINGW*)1110# Windows has its own (incompatible) sort and find1111sort() {1112/usr/bin/sort"$@"1113}1114find() {1115/usr/bin/find"$@"1116}1117# git sees Windows-style pwd1118pwd() {1119builtin pwd -W1120}1121# no POSIX permissions1122# backslashes in pathspec are converted to '/'1123# exec does not inherit the PID1124 test_set_prereq MINGW1125 test_set_prereq NATIVE_CRLF1126 test_set_prereq SED_STRIPS_CR1127 test_set_prereq GREP_STRIPS_CR1128 GIT_TEST_CMP=mingw_test_cmp1129;;1130*CYGWIN*)1131 test_set_prereq POSIXPERM1132 test_set_prereq EXECKEEPSPID1133 test_set_prereq CYGWIN1134 test_set_prereq SED_STRIPS_CR1135 test_set_prereq GREP_STRIPS_CR1136;;1137*)1138 test_set_prereq POSIXPERM1139 test_set_prereq BSLASHPSPEC1140 test_set_prereq EXECKEEPSPID1141;;1142esac11431144( COLUMNS=1&&test$COLUMNS=1) && test_set_prereq COLUMNS_CAN_BE_11145test -z"$NO_PERL"&& test_set_prereq PERL1146test -z"$NO_PTHREADS"&& test_set_prereq PTHREADS1147test -z"$NO_PYTHON"&& test_set_prereq PYTHON1148test -n"$USE_LIBPCRE1$USE_LIBPCRE2"&& test_set_prereq PCRE1149test -n"$USE_LIBPCRE1"&& test_set_prereq LIBPCRE11150test -n"$USE_LIBPCRE2"&& test_set_prereq LIBPCRE21151test -z"$NO_GETTEXT"&& test_set_prereq GETTEXT11521153iftest -n"$GIT_TEST_GETTEXT_POISON_ORIG"1154then1155 GIT_TEST_GETTEXT_POISON=$GIT_TEST_GETTEXT_POISON_ORIG1156unset GIT_TEST_GETTEXT_POISON_ORIG1157fi11581159# Can we rely on git's output in the C locale?1160iftest -z"$GIT_TEST_GETTEXT_POISON"1161then1162 test_set_prereq C_LOCALE_OUTPUT1163fi11641165iftest -z"$GIT_TEST_CHECK_CACHE_TREE"1166then1167 GIT_TEST_CHECK_CACHE_TREE=true1168export GIT_TEST_CHECK_CACHE_TREE1169fi11701171test_lazy_prereq PIPE '1172 # test whether the filesystem supports FIFOs1173 test_have_prereq !MINGW,!CYGWIN &&1174 rm -f testfifo && mkfifo testfifo1175'11761177test_lazy_prereq SYMLINKS '1178 # test whether the filesystem supports symbolic links1179 ln -s x y && test -h y1180'11811182test_lazy_prereq FILEMODE '1183 test "$(git config --bool core.filemode)" = true1184'11851186test_lazy_prereq CASE_INSENSITIVE_FS '1187 echo good >CamelCase &&1188 echo bad >camelcase &&1189 test "$(cat CamelCase)" != good1190'11911192test_lazy_prereq FUNNYNAMES '1193 test_have_prereq !MINGW &&1194 touch -- \1195 "FUNNYNAMES tab embedded" \1196 "FUNNYNAMES\"quote embedded\"" \1197 "FUNNYNAMES newline1198embedded" 2>/dev/null &&1199 rm -- \1200 "FUNNYNAMES tab embedded" \1201 "FUNNYNAMES\"quote embedded\"" \1202 "FUNNYNAMES newline1203embedded" 2>/dev/null1204'12051206test_lazy_prereq UTF8_NFD_TO_NFC '1207 # check whether FS converts nfd unicode to nfc1208 auml=$(printf "\303\244")1209 aumlcdiar=$(printf "\141\314\210")1210 >"$auml" &&1211 test -f "$aumlcdiar"1212'12131214test_lazy_prereq AUTOIDENT '1215 sane_unset GIT_AUTHOR_NAME &&1216 sane_unset GIT_AUTHOR_EMAIL &&1217 git var GIT_AUTHOR_IDENT1218'12191220test_lazy_prereq EXPENSIVE '1221 test -n "$GIT_TEST_LONG"1222'12231224test_lazy_prereq EXPENSIVE_ON_WINDOWS '1225 test_have_prereq EXPENSIVE || test_have_prereq !MINGW,!CYGWIN1226'12271228test_lazy_prereq USR_BIN_TIME '1229 test -x /usr/bin/time1230'12311232test_lazy_prereq NOT_ROOT '1233 uid=$(id -u)&&1234 test "$uid" != 01235'12361237test_lazy_prereq JGIT '1238 type jgit1239'12401241# SANITY is about "can you correctly predict what the filesystem would1242# do by only looking at the permission bits of the files and1243# directories?" A typical example of !SANITY is running the test1244# suite as root, where a test may expect "chmod -r file && cat file"1245# to fail because file is supposed to be unreadable after a successful1246# chmod. In an environment (i.e. combination of what filesystem is1247# being used and who is running the tests) that lacks SANITY, you may1248# be able to delete or create a file when the containing directory1249# doesn't have write permissions, or access a file even if the1250# containing directory doesn't have read or execute permissions.12511252test_lazy_prereq SANITY '1253 mkdir SANETESTD.1 SANETESTD.2 &&12541255 chmod +w SANETESTD.1 SANETESTD.2 &&1256 >SANETESTD.1/x 2>SANETESTD.2/x &&1257 chmod -w SANETESTD.1 &&1258 chmod -r SANETESTD.1/x &&1259 chmod -rx SANETESTD.2 ||1260 BUG "cannot prepare SANETESTD"12611262 ! test -r SANETESTD.1/x &&1263 ! rm SANETESTD.1/x && ! test -f SANETESTD.2/x1264 status=$?12651266 chmod +rwx SANETESTD.1 SANETESTD.2 &&1267 rm -rf SANETESTD.1 SANETESTD.2 ||1268 BUG "cannot clean SANETESTD"1269 return$status1270'12711272test FreeBSD !=$uname_s|| GIT_UNZIP=${GIT_UNZIP:-/usr/local/bin/unzip}1273GIT_UNZIP=${GIT_UNZIP:-unzip}1274test_lazy_prereq UNZIP '1275 "$GIT_UNZIP" -v1276 test $? -ne 1271277'12781279run_with_limited_cmdline () {1280(ulimit -s128&&"$@")1281}12821283test_lazy_prereq CMDLINE_LIMIT '1284 test_have_prereq !MINGW,!CYGWIN &&1285 run_with_limited_cmdline true1286'12871288run_with_limited_stack () {1289(ulimit -s128&&"$@")1290}12911292test_lazy_prereq ULIMIT_STACK_SIZE '1293 test_have_prereq !MINGW,!CYGWIN &&1294 run_with_limited_stack true1295'12961297build_option () {1298 git version --build-options|1299sed-ne"s/^$1: //p"1300}13011302test_lazy_prereq LONG_IS_64BIT '1303 test 8 -le "$(build_option sizeof-long)"1304'13051306test_lazy_prereq TIME_IS_64BIT 'test-tool date is64bit'1307test_lazy_prereq TIME_T_IS_64BIT 'test-tool date time_t-is64bit'13081309test_lazy_prereq CURL '1310 curl --version1311'13121313# SHA1 is a test if the hash algorithm in use is SHA-1. This is both for tests1314# which will not work with other hash algorithms and tests that work but don't1315# test anything meaningful (e.g. special values which cause short collisions).1316test_lazy_prereq SHA1 '1317 test$(git hash-object /dev/null)= e69de29bb2d1d6434b8b29ae775ad8c2e48c53911318'13191320test_lazy_prereq REBASE_P '1321 test -z "$GIT_TEST_SKIP_REBASE_P"1322'