]> git.ipfire.org Git - thirdparty/git.git/commitdiff
Merge branch 'ep/fix-test-lib-functions-report' into maint
authorJunio C Hamano <gitster@pobox.com>
Wed, 13 May 2015 21:05:52 +0000 (14:05 -0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 13 May 2015 21:05:53 +0000 (14:05 -0700)
* ep/fix-test-lib-functions-report:
  test-lib-functions.sh: fix the second argument to some helper functions

1  2 
t/test-lib-functions.sh

index 0698ce7908cb958c6e94a8cfa11c1019de692710,e8981b116fee2028d54f3ae375eb395f4e1d7272..8f8858a5f0a4f7a705960cef5b5558064a86ea28
@@@ -476,17 -381,17 +476,17 @@@ test_external_without_stderr () 
  # The commands test the existence or non-existence of $1. $2 can be
  # given to provide a more precise diagnosis.
  test_path_is_file () {
 -      if ! [ -f "$1" ]
 +      if ! test -f "$1"
        then
-               echo "File $1 doesn't exist. $*"
+               echo "File $1 doesn't exist. $2"
                false
        fi
  }
  
  test_path_is_dir () {
 -      if ! [ -d "$1" ]
 +      if ! test -d "$1"
        then
-               echo "Directory $1 doesn't exist. $*"
+               echo "Directory $1 doesn't exist. $2"
                false
        fi
  }