Skip to content

Commit

Permalink
git p4: add test for tag import/export enabled via config
Browse files Browse the repository at this point in the history
This adds a test for git p4 to check it can import/export tags
when enabled via a config variable rather than on the command
line.

Signed-off-by: Luke Diamand <luke@diamand.org>
Acked-by: Pete Wyckoff <pw@padd.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Luke Diamand authored and Junio C Hamano committed May 11, 2012
1 parent 00855b6 commit e71f6a5
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions t/t9811-git-p4-label-import.sh
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,26 @@ test_expect_success 'tag that cannot be exported' '
)
'

test_expect_success 'use git config to enable import/export of tags' '
git p4 clone --verbose --dest="$git" //depot@all &&
(
cd "$git" &&
git config git-p4.exportLabels true &&
git config git-p4.importLabels true &&
git tag CFG_A_GIT_TAG &&
git p4 rebase --verbose &&
git p4 submit --verbose &&
git tag &&
git tag | grep TAG_F1_1
) &&
(
cd "$cli" &&
p4 labels &&
p4 labels | grep CFG_A_GIT_TAG
)
'


test_expect_success 'kill p4d' '
kill_p4d
'
Expand Down

0 comments on commit e71f6a5

Please sign in to comment.