[PATCH] Convert t6022 to use git-merge instead of git-pull
From: Alex Riesen <hidden>
Date: 2016-06-15 22:43:07
Subsystem:
the rest · Maintainer:
Linus Torvalds
Signed-off-by: Alex Riesen <redacted> --- t/t6022-merge-rename.sh | 28 ++++++++++++++-------------- 1 files changed, 14 insertions(+), 14 deletions(-)
diff --git a/t/t6022-merge-rename.sh b/t/t6022-merge-rename.sh
index b608e20..99817de 100755
--- a/t/t6022-merge-rename.sh
+++ b/t/t6022-merge-rename.sh@@ -79,10 +79,10 @@ git commit -m "blue renames A->C, M->N" && git checkout master' -test_expect_success 'pull renaming branch into unrenaming one' \ +test_expect_success 'merge renaming branch into unrenaming one' \ ' git show-branch - git pull . white && { + git merge white && { echo "BAD: should have conflicted" return 1 }
@@ -108,12 +108,12 @@ test_expect_success 'pull renaming branch into unrenaming one' \ } ' -test_expect_success 'pull renaming branch into another renaming one' \ +test_expect_success 'merge renaming branch into another renaming one' \ ' rm -f B git reset --hard git checkout red - git pull . white && { + git merge white && { echo "BAD: should have conflicted" return 1 }
@@ -138,11 +138,11 @@ test_expect_success 'pull renaming branch into another renaming one' \ } ' -test_expect_success 'pull unrenaming branch into renaming one' \ +test_expect_success 'merge unrenaming branch into renaming one' \ ' git reset --hard git show-branch - git pull . master && { + git merge master && { echo "BAD: should have conflicted" return 1 }
@@ -167,11 +167,11 @@ test_expect_success 'pull unrenaming branch into renaming one' \ } ' -test_expect_success 'pull conflicting renames' \ +test_expect_success 'merge conflicting renames' \ ' git reset --hard git show-branch - git pull . blue && { + git merge blue && { echo "BAD: should have conflicted" return 1 }
@@ -209,7 +209,7 @@ test_expect_success 'interference with untracked working tree file' ' git reset --hard git show-branch echo >A this file should not matter - git pull . white && { + git merge white && { echo "BAD: should have conflicted" return 1 }
@@ -226,7 +226,7 @@ test_expect_success 'interference with untracked working tree file' ' git show-branch rm -f A echo >A this file should not matter - git pull . red && { + git merge red && { echo "BAD: should have conflicted" return 1 }
@@ -243,7 +243,7 @@ test_expect_success 'interference with untracked working tree file' ' git checkout -f master git tag -f anchor git show-branch - git pull . yellow || { + git merge yellow || { echo "BAD: should have cleanly merged" return 1 }
@@ -263,7 +263,7 @@ test_expect_success 'updated working tree file should prevent the merge' ' git show-branch echo >>M one line addition cat M >M.saved - git pull . yellow && { + git merge yellow && { echo "BAD: should have complained" return 1 }
@@ -284,7 +284,7 @@ test_expect_success 'updated working tree file should prevent the merge' ' echo >>M one line addition cat M >M.saved git update-index M - git pull . yellow && { + git merge yellow && { echo "BAD: should have complained" return 1 }
@@ -303,7 +303,7 @@ test_expect_success 'interference with untracked working tree file' ' git tag -f anchor git show-branch echo >M this file should not matter - git pull . master || { + git merge master || { echo "BAD: should have cleanly merged" return 1 }
--
1.5.2.rc0.63.gdfc8-dirty