Skip to content

Commit

Permalink
Move t6000lib.sh to lib-*
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Ævar Arnfjörð Bjarmason authored and Junio C Hamano committed May 8, 2010
1 parent 3bf7886 commit 9d488eb
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion t/t6002-rev-list-bisect.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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...
#
Expand Down
2 changes: 1 addition & 1 deletion t/t6003-rev-list-topo-order.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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()
{
Expand Down
2 changes: 1 addition & 1 deletion t/t6101-rev-parse-parents.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9d488eb

Please sign in to comment.