1#!/bin/sh 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# if --tee was passed, write the output not only to the terminal, but 19# additionally to the file test-results/$BASENAME.out, too. 20case"$GIT_TEST_TEE_STARTED, $* "in 21done,*) 22# do not redirect again 23;; 24*' --tee '*|*' --va'*) 25mkdir-p test-results 26 BASE=test-results/$(basename "$0" .sh) 27(GIT_TEST_TEE_STARTED=done${SHELL-sh}"$0""$@"2>&1; 28echo $? >$BASE.exit) |tee$BASE.out 29test"$(cat $BASE.exit)"=0 30exit 31;; 32esac 33 34# Keep the original TERM for say_color 35ORIGINAL_TERM=$TERM 36 37# For repeatability, reset the environment to known value. 38LANG=C 39LC_ALL=C 40PAGER=cat 41TZ=UTC 42TERM=dumb 43export LANG LC_ALL PAGER TERM TZ 44EDITOR=: 45unset VISUAL 46unset EMAIL 47unset $(perl -e' 48 my @env = keys %ENV; 49 my @vars = grep(/^GIT_/ && !/^GIT_(TRACE|DEBUG|USE_LOOKUP)/, @env); 50 print join("\n", @vars); 51') 52GIT_AUTHOR_EMAIL=author@example.com 53GIT_AUTHOR_NAME='A U Thor' 54GIT_COMMITTER_EMAIL=committer@example.com 55GIT_COMMITTER_NAME='C O Mitter' 56GIT_MERGE_VERBOSITY=5 57export GIT_MERGE_VERBOSITY 58export GIT_AUTHOR_EMAIL GIT_AUTHOR_NAME 59export GIT_COMMITTER_EMAIL GIT_COMMITTER_NAME 60export EDITOR 61 62# Protect ourselves from common misconfiguration to export 63# CDPATH into the environment 64unset CDPATH 65 66unset GREP_OPTIONS 67 68case$(echo $GIT_TRACE |tr "[A-Z]" "[a-z]")in 691|2|true) 70echo"* warning: Some tests will not work if GIT_TRACE" \ 71"is set as to trace on STDERR ! *" 72echo"* warning: Please set GIT_TRACE to something" \ 73"other than 1, 2 or true ! *" 74;; 75esac 76 77# Convenience 78# 79# A regexp to match 5 and 40 hexdigits 80_x05='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]' 81_x40="$_x05$_x05$_x05$_x05$_x05$_x05$_x05$_x05" 82 83# Each test should start with something like this, after copyright notices: 84# 85# test_description='Description of this test... 86# This test checks if command xyzzy does the right thing... 87# ' 88# . ./test-lib.sh 89["x$ORIGINAL_TERM"!="xdumb"] && ( 90 TERM=$ORIGINAL_TERM&& 91export TERM && 92[-t1] && 93tput bold >/dev/null 2>&1&& 94tput setaf 1>/dev/null 2>&1&& 95tput sgr0 >/dev/null 2>&1 96) && 97 color=t 98 99whiletest"$#"-ne0 100do 101case"$1"in 102-d|--d|--de|--deb|--debu|--debug) 103 debug=t;shift;; 104-i|--i|--im|--imm|--imme|--immed|--immedi|--immedia|--immediat|--immediate) 105 immediate=t;shift;; 106-l|--l|--lo|--lon|--long|--long-|--long-t|--long-te|--long-tes|--long-test|--long-tests) 107 GIT_TEST_LONG=t;export GIT_TEST_LONG;shift;; 108-h|--h|--he|--hel|--help) 109help=t;shift;; 110-v|--v|--ve|--ver|--verb|--verbo|--verbos|--verbose) 111 verbose=t;shift;; 112-q|--q|--qu|--qui|--quie|--quiet) 113# Ignore --quiet under a TAP::Harness. Saying how many tests 114# passed without the ok/not ok details is always an error. 115test -z"$HARNESS_ACTIVE"&& quiet=t;shift;; 116--with-dashes) 117 with_dashes=t;shift;; 118--no-color) 119 color=;shift;; 120--va|--val|--valg|--valgr|--valgri|--valgrin|--valgrind) 121 valgrind=t; verbose=t;shift;; 122--tee) 123shift;;# was handled already 124--root=*) 125 root=$(expr "z$1" : 'z[^=]*=\(.*\)') 126 shift ;; 127 *) 128 echo "error: unknown test option '$1'" >&2; exit 1 ;; 129 esac 130done 131 132if test -n "$color"; then 133 say_color () { 134 ( 135 TERM=$ORIGINAL_TERM 136 export TERM 137 case "$1" in 138 error) tput bold; tput setaf 1;; # bold red 139 skip) tput bold; tput setaf 2;; # bold green 140 pass) tput setaf 2;; # green 141 info) tput setaf 3;; # brown 142 *) test -n "$quiet" && return;; 143 esac 144 shift 145 printf "%s" "$*" 146 tput sgr0 147 echo 148 ) 149 } 150else 151 say_color() { 152 test -z "$1" && test -n "$quiet" && return 153 shift 154 echo "$*" 155 } 156fi 157 158error () { 159 say_color error "error: $*" 160 GIT_EXIT_OK=t 161 exit 1 162} 163 164say () { 165 say_color info "$*" 166} 167 168test "${test_description}" != "" || 169error "Test script did not set test_description." 170 171if test "$help" = "t" 172then 173 echo "$test_description" 174 exit 0 175fi 176 177exec 5>&1 178if test "$verbose" = "t" 179then 180 exec 4>&2 3>&1 181else 182 exec 4>/dev/null 3>/dev/null 183fi 184 185test_failure=0 186test_count=0 187test_fixed=0 188test_broken=0 189test_success=0 190 191test_external_has_tap=0 192 193die () { 194 code=$? 195 if test -n "$GIT_EXIT_OK" 196 then 197 exit$code 198 else 199 echo >&5 "FATAL: Unexpected exit with code$code" 200 exit 1 201 fi 202} 203 204GIT_EXIT_OK= 205trap 'die' EXIT 206 207# The semantics of the editor variables are that of invoking 208# sh -c "$EDITOR\"$@\"" files ... 209# 210# If our trash directory contains shell metacharacters, they will be 211# interpreted if we just set$EDITORdirectly, so do a little dance with 212# environment variables to work around this. 213# 214# In particular, quoting isn't enough, as the path may contain the same quote 215# that we're using. 216test_set_editor () { 217 FAKE_EDITOR="$1" 218export FAKE_EDITOR 219 EDITOR='"$FAKE_EDITOR"' 220export EDITOR 221} 222 223test_decode_color () { 224awk' 225 function name(n) { 226 if (n == 0) return "RESET"; 227 if (n == 1) return "BOLD"; 228 if (n == 30) return "BLACK"; 229 if (n == 31) return "RED"; 230 if (n == 32) return "GREEN"; 231 if (n == 33) return "YELLOW"; 232 if (n == 34) return "BLUE"; 233 if (n == 35) return "MAGENTA"; 234 if (n == 36) return "CYAN"; 235 if (n == 37) return "WHITE"; 236 if (n == 40) return "BLACK"; 237 if (n == 41) return "BRED"; 238 if (n == 42) return "BGREEN"; 239 if (n == 43) return "BYELLOW"; 240 if (n == 44) return "BBLUE"; 241 if (n == 45) return "BMAGENTA"; 242 if (n == 46) return "BCYAN"; 243 if (n == 47) return "BWHITE"; 244 } 245 { 246 while (match($0, /\033\[[0-9;]*m/) != 0) { 247 printf "%s<", substr($0, 1, RSTART-1); 248 codes = substr($0, RSTART+2, RLENGTH-3); 249 if (length(codes) == 0) 250 printf "%s", name(0) 251 else { 252 n = split(codes, ary, ";"); 253 sep = ""; 254 for (i = 1; i <= n; i++) { 255 printf "%s%s", sep, name(ary[i]); 256 sep = ";" 257 } 258 } 259 printf ">"; 260$0= substr($0, RSTART + RLENGTH, length($0) - RSTART - RLENGTH + 1); 261 } 262 print 263 } 264 ' 265} 266 267nul_to_q () { 268 perl -pe'y/\000/Q/' 269} 270 271q_to_nul () { 272 perl -pe'y/Q/\000/' 273} 274 275q_to_cr () { 276tr Q '\015' 277} 278 279q_to_tab () { 280tr Q '\011' 281} 282 283append_cr () { 284sed-e's/$/Q/'|tr Q '\015' 285} 286 287remove_cr () { 288tr'\015' Q |sed-e's/Q$//' 289} 290 291# In some bourne shell implementations, the "unset" builtin returns 292# nonzero status when a variable to be unset was not set in the first 293# place. 294# 295# Use sane_unset when that should not be considered an error. 296 297sane_unset () { 298unset"$@" 299return0 300} 301 302test_tick () { 303iftest -z"${test_tick+set}" 304then 305 test_tick=1112911993 306else 307 test_tick=$(($test_tick + 60)) 308fi 309 GIT_COMMITTER_DATE="$test_tick-0700" 310 GIT_AUTHOR_DATE="$test_tick-0700" 311export GIT_COMMITTER_DATE GIT_AUTHOR_DATE 312} 313 314# Call test_commit with the arguments "<message> [<file> [<contents>]]" 315# 316# This will commit a file with the given contents and the given commit 317# message. It will also add a tag with <message> as name. 318# 319# Both <file> and <contents> default to <message>. 320 321test_commit () { 322file=${2:-"$1.t"} 323echo"${3-$1}">"$file"&& 324 git add "$file"&& 325 test_tick && 326 git commit -m"$1"&& 327 git tag "$1" 328} 329 330# Call test_merge with the arguments "<message> <commit>", where <commit> 331# can be a tag pointing to the commit-to-merge. 332 333test_merge () { 334 test_tick && 335 git merge -m"$1""$2"&& 336 git tag "$1" 337} 338 339# This function helps systems where core.filemode=false is set. 340# Use it instead of plain 'chmod +x' to set or unset the executable bit 341# of a file in the working directory and add it to the index. 342 343test_chmod () { 344chmod"$@"&& 345 git update-index --add"--chmod=$@" 346} 347 348# Use test_set_prereq to tell that a particular prerequisite is available. 349# The prerequisite can later be checked for in two ways: 350# 351# - Explicitly using test_have_prereq. 352# 353# - Implicitly by specifying the prerequisite tag in the calls to 354# test_expect_{success,failure,code}. 355# 356# The single parameter is the prerequisite tag (a simple word, in all 357# capital letters by convention). 358 359test_set_prereq () { 360 satisfied="$satisfied$1" 361} 362satisfied=" " 363 364test_have_prereq () { 365# prerequisites can be concatenated with ',' 366 save_IFS=$IFS 367 IFS=, 368set -- $* 369 IFS=$save_IFS 370 371 total_prereq=0 372 ok_prereq=0 373 missing_prereq= 374 375for prerequisite 376do 377 total_prereq=$(($total_prereq + 1)) 378case$satisfiedin 379*"$prerequisite"*) 380 ok_prereq=$(($ok_prereq + 1)) 381;; 382*) 383# Keep a list of missing prerequisites 384iftest -z"$missing_prereq" 385then 386 missing_prereq=$prerequisite 387else 388 missing_prereq="$prerequisite,$missing_prereq" 389fi 390esac 391done 392 393test$total_prereq=$ok_prereq 394} 395 396test_declared_prereq () { 397case",$test_prereq,"in 398*,$1,*) 399return0 400;; 401esac 402return1 403} 404 405# You are not expected to call test_ok_ and test_failure_ directly, use 406# the text_expect_* functions instead. 407 408test_ok_ () { 409 test_success=$(($test_success + 1)) 410 say_color """ok$test_count- $@" 411} 412 413test_failure_ () { 414 test_failure=$(($test_failure + 1)) 415 say_color error "not ok -$test_count$1" 416shift 417echo"$@"|sed-e's/^/# /' 418test"$immediate"=""|| { GIT_EXIT_OK=t;exit1; } 419} 420 421test_known_broken_ok_ () { 422 test_fixed=$(($test_fixed+1)) 423 say_color """ok$test_count- $@ # TODO known breakage" 424} 425 426test_known_broken_failure_ () { 427 test_broken=$(($test_broken+1)) 428 say_color skip "not ok$test_count- $@ # TODO known breakage" 429} 430 431test_debug () { 432test"$debug"=""||eval"$1" 433} 434 435test_run_ () { 436 test_cleanup=: 437eval>&3 2>&4"$1" 438 eval_ret=$? 439eval>&3 2>&4"$test_cleanup" 440iftest"$verbose"="t"&&test -n"$HARNESS_ACTIVE";then 441echo"" 442fi 443return0 444} 445 446test_skip () { 447 test_count=$(($test_count+1)) 448 to_skip= 449for skp in$GIT_SKIP_TESTS 450do 451case$this_test.$test_countin 452$skp) 453 to_skip=t 454break 455esac 456done 457iftest -z"$to_skip"&&test -n"$test_prereq"&& 458! test_have_prereq "$test_prereq" 459then 460 to_skip=t 461fi 462case"$to_skip"in 463 t) 464 of_prereq= 465iftest"$missing_prereq"!="$test_prereq" 466then 467 of_prereq=" of$test_prereq" 468fi 469 470 say_color skip >&3"skipping test: $@" 471 say_color skip "ok$test_count# skip$1(missing$missing_prereq${of_prereq})" 472: true 473;; 474*) 475 false 476;; 477esac 478} 479 480test_expect_failure () { 481test"$#"=3&& { test_prereq=$1;shift; } || test_prereq= 482test"$#"=2|| 483 error "bug in the test script: not 2 or 3 parameters to test-expect-failure" 484export test_prereq 485if! test_skip "$@" 486then 487 say >&3"checking known breakage:$2" 488 test_run_ "$2" 489if["$?"=0-a"$eval_ret"=0] 490then 491 test_known_broken_ok_ "$1" 492else 493 test_known_broken_failure_ "$1" 494fi 495fi 496echo>&3"" 497} 498 499test_expect_success () { 500test"$#"=3&& { test_prereq=$1;shift; } || test_prereq= 501test"$#"=2|| 502 error "bug in the test script: not 2 or 3 parameters to test-expect-success" 503export test_prereq 504if! test_skip "$@" 505then 506 say >&3"expecting success:$2" 507 test_run_ "$2" 508if["$?"=0-a"$eval_ret"=0] 509then 510 test_ok_ "$1" 511else 512 test_failure_ "$@" 513fi 514fi 515echo>&3"" 516} 517 518# test_external runs external test scripts that provide continuous 519# test output about their progress, and succeeds/fails on 520# zero/non-zero exit code. It outputs the test output on stdout even 521# in non-verbose mode, and announces the external script with "# run 522# <n>: ..." before running it. When providing relative paths, keep in 523# mind that all scripts run in "trash directory". 524# Usage: test_external description command arguments... 525# Example: test_external 'Perl API' perl ../path/to/test.pl 526test_external () { 527test"$#"=4&& { test_prereq=$1;shift; } || test_prereq= 528test"$#"=3|| 529 error >&5"bug in the test script: not 3 or 4 parameters to test_external" 530 descr="$1" 531shift 532export test_prereq 533if! test_skip "$descr""$@" 534then 535# Announce the script to reduce confusion about the 536# test output that follows. 537 say_color """# run$test_count:$descr($*)" 538# Export TEST_DIRECTORY, TRASH_DIRECTORY and GIT_TEST_LONG 539# to be able to use them in script 540export TEST_DIRECTORY TRASH_DIRECTORY GIT_TEST_LONG 541# Run command; redirect its stderr to &4 as in 542# test_run_, but keep its stdout on our stdout even in 543# non-verbose mode. 544"$@"2>&4 545if["$?"=0] 546then 547iftest$test_external_has_tap-eq0;then 548 test_ok_ "$descr" 549else 550 say_color """# test_external test$descrwas ok" 551 test_success=$(($test_success + 1)) 552fi 553else 554iftest$test_external_has_tap-eq0;then 555 test_failure_ "$descr""$@" 556else 557 say_color error "# test_external test$descrfailed: $@" 558 test_failure=$(($test_failure + 1)) 559fi 560fi 561fi 562} 563 564# Like test_external, but in addition tests that the command generated 565# no output on stderr. 566test_external_without_stderr () { 567# The temporary file has no (and must have no) security 568# implications. 569 tmp="$TMPDIR";if[-z"$tmp"];then tmp=/tmp;fi 570 stderr="$tmp/git-external-stderr.$$.tmp" 571 test_external "$@"4>"$stderr" 572[-f"$stderr"] || error "Internal error:$stderrdisappeared." 573 descr="no stderr:$1" 574shift 575 say >&3"# expecting no stderr from previous command" 576if[ !-s"$stderr"];then 577rm"$stderr" 578 579iftest$test_external_has_tap-eq0;then 580 test_ok_ "$descr" 581else 582 say_color """# test_external_without_stderr test$descrwas ok" 583 test_success=$(($test_success + 1)) 584fi 585else 586if["$verbose"= t ];then 587 output=`echo; echo "# Stderr is:"; cat "$stderr"` 588else 589 output= 590fi 591# rm first in case test_failure exits. 592rm"$stderr" 593iftest$test_external_has_tap-eq0;then 594 test_failure_ "$descr""$@""$output" 595else 596 say_color error "# test_external_without_stderr test$descrfailed: $@:$output" 597 test_failure=$(($test_failure + 1)) 598fi 599fi 600} 601 602# debugging-friendly alternatives to "test [-f|-d|-e]" 603# The commands test the existence or non-existence of $1. $2 can be 604# given to provide a more precise diagnosis. 605test_path_is_file () { 606if! [-f"$1"] 607then 608echo"File$1doesn't exist. $*" 609 false 610fi 611} 612 613test_path_is_dir () { 614if! [-d"$1"] 615then 616echo"Directory$1doesn't exist. $*" 617 false 618fi 619} 620 621test_path_is_missing () { 622if[-e"$1"] 623then 624echo"Path exists:" 625ls-ld"$1" 626if[$#-ge1];then 627echo"$*" 628fi 629 false 630fi 631} 632 633# test_line_count checks that a file has the number of lines it 634# ought to. For example: 635# 636# test_expect_success 'produce exactly one line of output' ' 637# do something >output && 638# test_line_count = 1 output 639# ' 640# 641# is like "test $(wc -l <output) = 1" except that it passes the 642# output through when the number of lines is wrong. 643 644test_line_count () { 645iftest$#!=3 646then 647 error "bug in the test script: not 3 parameters to test_line_count" 648elif!test$(wc -l <"$3")"$1""$2" 649then 650echo"test_line_count: line count for$3!$1$2" 651cat"$3" 652return1 653fi 654} 655 656# This is not among top-level (test_expect_success | test_expect_failure) 657# but is a prefix that can be used in the test script, like: 658# 659# test_expect_success 'complain and die' ' 660# do something && 661# do something else && 662# test_must_fail git checkout ../outerspace 663# ' 664# 665# Writing this as "! git checkout ../outerspace" is wrong, because 666# the failure could be due to a segv. We want a controlled failure. 667 668test_must_fail () { 669"$@" 670 exit_code=$? 671iftest$exit_code=0;then 672echo>&2"test_must_fail: command succeeded: $*" 673return1 674eliftest$exit_code-gt129-a$exit_code-le192;then 675echo>&2"test_must_fail: died by signal: $*" 676return1 677eliftest$exit_code=127;then 678echo>&2"test_must_fail: command not found: $*" 679return1 680fi 681return0 682} 683 684# Similar to test_must_fail, but tolerates success, too. This is 685# meant to be used in contexts like: 686# 687# test_expect_success 'some command works without configuration' ' 688# test_might_fail git config --unset all.configuration && 689# do something 690# ' 691# 692# Writing "git config --unset all.configuration || :" would be wrong, 693# because we want to notice if it fails due to segv. 694 695test_might_fail () { 696"$@" 697 exit_code=$? 698iftest$exit_code-gt129-a$exit_code-le192;then 699echo>&2"test_might_fail: died by signal: $*" 700return1 701eliftest$exit_code=127;then 702echo>&2"test_might_fail: command not found: $*" 703return1 704fi 705return0 706} 707 708# Similar to test_must_fail and test_might_fail, but check that a 709# given command exited with a given exit code. Meant to be used as: 710# 711# test_expect_success 'Merge with d/f conflicts' ' 712# test_expect_code 1 git merge "merge msg" B master 713# ' 714 715test_expect_code () { 716 want_code=$1 717shift 718"$@" 719 exit_code=$? 720iftest$exit_code=$want_code 721then 722echo>&2"test_expect_code: command exited with$exit_code: $*" 723return0 724else 725echo>&2"test_expect_code: command exited with$exit_code, we wanted$want_code$*" 726return1 727fi 728} 729 730# test_cmp is a helper function to compare actual and expected output. 731# You can use it like: 732# 733# test_expect_success 'foo works' ' 734# echo expected >expected && 735# foo >actual && 736# test_cmp expected actual 737# ' 738# 739# This could be written as either "cmp" or "diff -u", but: 740# - cmp's output is not nearly as easy to read as diff -u 741# - not all diff versions understand "-u" 742 743test_cmp() { 744$GIT_TEST_CMP"$@" 745} 746 747# This function can be used to schedule some commands to be run 748# unconditionally at the end of the test to restore sanity: 749# 750# test_expect_success 'test core.capslock' ' 751# git config core.capslock true && 752# test_when_finished "git config --unset core.capslock" && 753# hello world 754# ' 755# 756# That would be roughly equivalent to 757# 758# test_expect_success 'test core.capslock' ' 759# git config core.capslock true && 760# hello world 761# git config --unset core.capslock 762# ' 763# 764# except that the greeting and config --unset must both succeed for 765# the test to pass. 766 767test_when_finished () { 768 test_cleanup="{ $* 769 } && (exit\"\$eval_ret\"); eval_ret=\$?;$test_cleanup" 770} 771 772# Most tests can use the created repository, but some may need to create more. 773# Usage: test_create_repo <directory> 774test_create_repo () { 775test"$#"=1|| 776 error "bug in the test script: not 1 parameter to test-create-repo" 777 repo="$1" 778mkdir-p"$repo" 779( 780cd"$repo"|| error "Cannot setup test environment" 781"$GIT_EXEC_PATH/git-init""--template=$GIT_BUILD_DIR/templates/blt/">&3 2>&4|| 782 error "cannot run git init -- have you built things yet?" 783mv .git/hooks .git/hooks-disabled 784) ||exit 785} 786 787test_done () { 788 GIT_EXIT_OK=t 789 790iftest -z"$HARNESS_ACTIVE";then 791 test_results_dir="$TEST_DIRECTORY/test-results" 792mkdir-p"$test_results_dir" 793 test_results_path="$test_results_dir/${0%.sh}-$$.counts" 794 795echo"total$test_count">>$test_results_path 796echo"success$test_success">>$test_results_path 797echo"fixed$test_fixed">>$test_results_path 798echo"broken$test_broken">>$test_results_path 799echo"failed$test_failure">>$test_results_path 800echo"">>$test_results_path 801fi 802 803iftest"$test_fixed"!=0 804then 805 say_color pass "# fixed$test_fixedknown breakage(s)" 806fi 807iftest"$test_broken"!=0 808then 809 say_color error "# still have$test_brokenknown breakage(s)" 810 msg="remaining$(($test_count-$test_broken)) test(s)" 811else 812 msg="$test_counttest(s)" 813fi 814case"$test_failure"in 8150) 816# Maybe print SKIP message 817[-z"$skip_all"] || skip_all=" # SKIP$skip_all" 818 819iftest$test_external_has_tap-eq0;then 820 say_color pass "# passed all$msg" 821 say "1..$test_count$skip_all" 822fi 823 824test -d"$remove_trash"&& 825cd"$(dirname "$remove_trash")"&& 826rm-rf"$(basename "$remove_trash")" 827 828exit0;; 829 830*) 831iftest$test_external_has_tap-eq0;then 832 say_color error "# failed$test_failureamong$msg" 833 say "1..$test_count" 834fi 835 836exit1;; 837 838esac 839} 840 841# Test the binaries we have just built. The tests are kept in 842# t/ subdirectory and are run in 'trash directory' subdirectory. 843iftest -z"$TEST_DIRECTORY" 844then 845# We allow tests to override this, in case they want to run tests 846# outside of t/, e.g. for running tests on the test library 847# itself. 848 TEST_DIRECTORY=$(pwd) 849fi 850GIT_BUILD_DIR="$TEST_DIRECTORY"/.. 851 852iftest -n"$valgrind" 853then 854 make_symlink () { 855test -h"$2"&& 856test"$1"="$(readlink "$2")"|| { 857# be super paranoid 858ifmkdir"$2".lock 859then 860rm-f"$2"&& 861ln-s"$1""$2"&& 862rm-r"$2".lock 863else 864whiletest -d"$2".lock 865do 866 say "Waiting for lock on$2." 867sleep1 868done 869fi 870} 871} 872 873 make_valgrind_symlink () { 874# handle only executables 875test -x"$1"||return 876 877 base=$(basename "$1") 878 symlink_target=$GIT_BUILD_DIR/$base 879# do not override scripts 880iftest -x"$symlink_target"&& 881test!-d"$symlink_target"&& 882test"#!"!="$(head -c 2 < "$symlink_target")" 883then 884 symlink_target=../valgrind.sh 885fi 886case"$base"in 887*.sh|*.perl) 888 symlink_target=../unprocessed-script 889esac 890# create the link, or replace it if it is out of date 891 make_symlink "$symlink_target""$GIT_VALGRIND/bin/$base"||exit 892} 893 894# override all git executables in TEST_DIRECTORY/.. 895 GIT_VALGRIND=$TEST_DIRECTORY/valgrind 896mkdir-p"$GIT_VALGRIND"/bin 897forfilein$GIT_BUILD_DIR/git*$GIT_BUILD_DIR/test-* 898do 899 make_valgrind_symlink $file 900done 901 OLDIFS=$IFS 902 IFS=: 903for path in$PATH 904do 905ls"$path"/git-*2> /dev/null | 906whilereadfile 907do 908 make_valgrind_symlink "$file" 909done 910done 911 IFS=$OLDIFS 912 PATH=$GIT_VALGRIND/bin:$PATH 913 GIT_EXEC_PATH=$GIT_VALGRIND/bin 914export GIT_VALGRIND 915eliftest -n"$GIT_TEST_INSTALLED";then 916 GIT_EXEC_PATH=$($GIT_TEST_INSTALLED/git --exec-path)|| 917 error "Cannot run git from$GIT_TEST_INSTALLED." 918 PATH=$GIT_TEST_INSTALLED:$GIT_BUILD_DIR:$PATH 919 GIT_EXEC_PATH=${GIT_TEST_EXEC_PATH:-$GIT_EXEC_PATH} 920else# normal case, use ../bin-wrappers only unless $with_dashes: 921 git_bin_dir="$GIT_BUILD_DIR/bin-wrappers" 922if!test -x"$git_bin_dir/git";then 923iftest -z"$with_dashes";then 924 say "$git_bin_dir/git is not executable; using GIT_EXEC_PATH" 925fi 926 with_dashes=t 927fi 928 PATH="$git_bin_dir:$PATH" 929 GIT_EXEC_PATH=$GIT_BUILD_DIR 930iftest -n"$with_dashes";then 931 PATH="$GIT_BUILD_DIR:$PATH" 932fi 933fi 934GIT_TEMPLATE_DIR="$GIT_BUILD_DIR"/templates/blt 935unset GIT_CONFIG 936GIT_CONFIG_NOSYSTEM=1 937GIT_ATTR_NOSYSTEM=1 938export PATH GIT_EXEC_PATH GIT_TEMPLATE_DIR GIT_CONFIG_NOSYSTEM GIT_ATTR_NOSYSTEM 939 940. "$GIT_BUILD_DIR"/GIT-BUILD-OPTIONS 941 942iftest -z"$GIT_TEST_CMP" 943then 944iftest -n"$GIT_TEST_CMP_USE_COPIED_CONTEXT" 945then 946 GIT_TEST_CMP="$DIFF-c" 947else 948 GIT_TEST_CMP="$DIFF-u" 949fi 950fi 951 952GITPERLLIB="$GIT_BUILD_DIR"/perl/blib/lib:"$GIT_BUILD_DIR"/perl/blib/arch/auto/Git 953export GITPERLLIB 954test -d"$GIT_BUILD_DIR"/templates/blt || { 955 error "You haven't built things yet, have you?" 956} 957 958iftest -z"$GIT_TEST_INSTALLED"&&test -z"$NO_PYTHON" 959then 960 GITPYTHONLIB="$GIT_BUILD_DIR/git_remote_helpers/build/lib" 961export GITPYTHONLIB 962test -d"$GIT_BUILD_DIR"/git_remote_helpers/build || { 963 error "You haven't built git_remote_helpers yet, have you?" 964} 965fi 966 967if!test -x"$GIT_BUILD_DIR"/test-chmtime;then 968echo>&2'You need to build test-chmtime:' 969echo>&2'Run "make test-chmtime" in the source (toplevel) directory' 970exit1 971fi 972 973# Test repository 974test="trash directory.$(basename "$0" .sh)" 975test -n"$root"&&test="$root/$test" 976case"$test"in 977/*) TRASH_DIRECTORY="$test";; 978*) TRASH_DIRECTORY="$TEST_DIRECTORY/$test";; 979esac 980test!-z"$debug"|| remove_trash=$TRASH_DIRECTORY 981rm-fr"$test"|| { 982 GIT_EXIT_OK=t 983echo>&5"FATAL: Cannot prepare test area" 984exit1 985} 986 987test_create_repo "$test" 988# Use -P to resolve symlinks in our working directory so that the cwd 989# in subprocesses like git equals our $PWD (for pathname comparisons). 990cd -P"$test"||exit1 991 992HOME=$(pwd) 993export HOME 994 995this_test=${0##*/} 996this_test=${this_test%%-*} 997for skp in$GIT_SKIP_TESTS 998do 999case"$this_test"in1000$skp)1001 say_color skip >&3"skipping test$this_testaltogether"1002 skip_all="skip all tests in$this_test"1003 test_done1004esac1005done10061007# Provide an implementation of the 'yes' utility1008yes() {1009iftest$#=01010then1011 y=y1012else1013 y="$*"1014fi10151016whileecho"$y"1017do1018:1019done1020}10211022# Fix some commands on Windows1023case$(uname -s)in1024*MINGW*)1025# Windows has its own (incompatible) sort and find1026sort() {1027/usr/bin/sort"$@"1028}1029find() {1030/usr/bin/find"$@"1031}1032sum() {1033md5sum"$@"1034}1035# git sees Windows-style pwd1036pwd() {1037builtin pwd -W1038}1039# no POSIX permissions1040# backslashes in pathspec are converted to '/'1041# exec does not inherit the PID1042 test_set_prereq MINGW1043 test_set_prereq SED_STRIPS_CR1044;;1045*CYGWIN*)1046 test_set_prereq POSIXPERM1047 test_set_prereq EXECKEEPSPID1048 test_set_prereq NOT_MINGW1049 test_set_prereq SED_STRIPS_CR1050;;1051*)1052 test_set_prereq POSIXPERM1053 test_set_prereq BSLASHPSPEC1054 test_set_prereq EXECKEEPSPID1055 test_set_prereq NOT_MINGW1056;;1057esac10581059test -z"$NO_PERL"&& test_set_prereq PERL1060test -z"$NO_PYTHON"&& test_set_prereq PYTHON10611062# Can we rely on git's output in the C locale?1063iftest -n"$GETTEXT_POISON"1064then1065 GIT_GETTEXT_POISON=YesPlease1066export GIT_GETTEXT_POISON1067else1068 test_set_prereq C_LOCALE_OUTPUT1069fi10701071# test whether the filesystem supports symbolic links1072ln-s x y 2>/dev/null &&test -h y 2>/dev/null && test_set_prereq SYMLINKS1073rm-f y10741075# When the tests are run as root, permission tests will report that1076# things are writable when they shouldn't be.1077test -w/ || test_set_prereq SANITY