summaryrefslogtreecommitdiff
path: root/t/t3310-notes-merge-manual-resolve.sh
diff options
context:
space:
mode:
authorJacob Keller <jacob.keller@gmail.com>2015-08-17 21:33:32 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-08-17 22:38:37 (GMT)
commit11dd2b2e9a3303bd1e32fd2ee95ec5dff38d9d47 (patch)
treef01f0b9deecdae73b6e986b4f737769098e7bb89 /t/t3310-notes-merge-manual-resolve.sh
parent93efcad31777142840eaefc19b71d1a4b6a2fe24 (diff)
downloadgit-11dd2b2e9a3303bd1e32fd2ee95ec5dff38d9d47.zip
git-11dd2b2e9a3303bd1e32fd2ee95ec5dff38d9d47.tar.gz
git-11dd2b2e9a3303bd1e32fd2ee95ec5dff38d9d47.tar.bz2
notes: add tests for --commit/--abort/--strategy exclusivity
Add new tests to ensure that --commit, --abort, and --strategy are mutually exclusive. Signed-off-by: Jacob Keller <jacob.keller@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t3310-notes-merge-manual-resolve.sh')
-rwxr-xr-xt/t3310-notes-merge-manual-resolve.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/t/t3310-notes-merge-manual-resolve.sh b/t/t3310-notes-merge-manual-resolve.sh
index 195bb97..d557212 100755
--- a/t/t3310-notes-merge-manual-resolve.sh
+++ b/t/t3310-notes-merge-manual-resolve.sh
@@ -314,6 +314,18 @@ y and z notes on 1st commit
EOF
+test_expect_success 'do not allow mixing --commit and --abort' '
+ test_must_fail git notes merge --commit --abort
+'
+
+test_expect_success 'do not allow mixing --commit and --strategy' '
+ test_must_fail git notes merge --commit --strategy theirs
+'
+
+test_expect_success 'do not allow mixing --abort and --strategy' '
+ test_must_fail git notes merge --abort --strategy theirs
+'
+
test_expect_success 'finalize conflicting merge (z => m)' '
# Resolve conflicts and finalize merge
cat >.git/NOTES_MERGE_WORKTREE/$commit_sha1 <<EOF &&