Browse Source

Move t6000lib.sh to lib-*

The naming of this test library conflicted with the recommendation in
t/README's "Naming Tests" section.

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Ævar Arnfjörð Bjarmason 15 years ago committed by Junio C Hamano
parent
commit
9d488eb40e
  1. 0
      t/lib-t6000.sh
  2. 2
      t/t6002-rev-list-bisect.sh
  3. 2
      t/t6003-rev-list-topo-order.sh
  4. 2
      t/t6101-rev-parse-parents.sh

0
t/t6000lib.sh → t/lib-t6000.sh

2
t/t6002-rev-list-bisect.sh

@ -5,7 +5,7 @@ @@ -5,7 +5,7 @@
test_description='Tests git rev-list --bisect functionality'

. ./test-lib.sh
. "$TEST_DIRECTORY"/t6000lib.sh # t6xxx specific functions
. "$TEST_DIRECTORY"/lib-t6000.sh # t6xxx specific functions

# usage: test_bisection max-diff bisect-option head ^prune...
#

2
t/t6003-rev-list-topo-order.sh

@ -6,7 +6,7 @@ @@ -6,7 +6,7 @@
test_description='Tests git rev-list --topo-order functionality'

. ./test-lib.sh
. "$TEST_DIRECTORY"/t6000lib.sh # t6xxx specific functions
. "$TEST_DIRECTORY"/lib-t6000.sh # t6xxx specific functions

list_duplicates()
{

2
t/t6101-rev-parse-parents.sh

@ -6,7 +6,7 @@ @@ -6,7 +6,7 @@
test_description='Test git rev-parse with different parent options'

. ./test-lib.sh
. "$TEST_DIRECTORY"/t6000lib.sh # t6xxx specific functions
. "$TEST_DIRECTORY"/lib-t6000.sh # t6xxx specific functions

date >path0
git update-index --add path0

Loading…
Cancel
Save