Skip to content

Commit

Permalink
test: trivial cleanups
Browse files Browse the repository at this point in the history
No functional changes.

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Felipe Contreras authored and Junio C Hamano committed May 28, 2013
1 parent 7a97ee1 commit 15c7348
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 16 deletions.
7 changes: 4 additions & 3 deletions t/t3403-rebase-skip.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,11 @@ test_expect_success 'rebase with --merge' '

test_expect_success 'rebase --skip with --merge' '
git rebase --skip
'
'

test_expect_success 'merge and reference trees equal' \
'test -z "`git diff-tree skip-merge skip-reference`"'
test_expect_success 'merge and reference trees equal' '
test -z "`git diff-tree skip-merge skip-reference`"
'

test_expect_success 'moved back to branch correctly' '
test refs/heads/skip-merge = $(git symbolic-ref HEAD)
Expand Down
18 changes: 5 additions & 13 deletions t/t3505-cherry-pick-empty.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,29 +28,21 @@ test_expect_success setup '
'

test_expect_success 'cherry-pick an empty commit' '
git checkout master && {
git cherry-pick empty-branch^
test "$?" = 1
}
git checkout master &&
test_expect_code 1 git cherry-pick empty-branch^
'

test_expect_success 'index lockfile was removed' '
test ! -f .git/index.lock
'

test_expect_success 'cherry-pick a commit with an empty message' '
git checkout master && {
git cherry-pick empty-branch
test "$?" = 1
}
git checkout master &&
test_expect_code 1 git cherry-pick empty-branch
'

test_expect_success 'index lockfile was removed' '
test ! -f .git/index.lock
'

test_expect_success 'cherry-pick a commit with an empty message with --allow-empty-message' '
Expand Down Expand Up @@ -101,7 +93,7 @@ test_expect_success 'cherry-pick a no-op with --keep-redundant' '
git reset --hard &&
git checkout fork^0 &&
git cherry-pick --keep-redundant-commits master &&
git show -s --format='%s' >actual &&
git show -s --format=%s >actual &&
echo "add file2 on master" >expect &&
test_cmp expect actual
'
Expand Down

0 comments on commit 15c7348

Please sign in to comment.